nixos/services/hoogle use DynamicUser instead of nobody
I've also removed PrivateTmp = true because this is implied by dynamic user. I've left ProtectHome = true because I believe this is stronger than ProtectHome = "read-only" which DynamicUser implies.
This commit is contained in:
parent
c5d33689da
commit
12c3e0a465
@ -61,10 +61,8 @@ in {
|
|||||||
Restart = "always";
|
Restart = "always";
|
||||||
ExecStart = ''${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home}'';
|
ExecStart = ''${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home}'';
|
||||||
|
|
||||||
User = "nobody";
|
DynamicUser = true;
|
||||||
Group = "nogroup";
|
|
||||||
|
|
||||||
PrivateTmp = true;
|
|
||||||
ProtectHome = true;
|
ProtectHome = true;
|
||||||
|
|
||||||
RuntimeDirectory = "hoogle";
|
RuntimeDirectory = "hoogle";
|
||||||
|
Loading…
Reference in New Issue
Block a user