mirror of
https://github.com/nix-community/home-manager
synced 2024-11-09 12:49:44 +01:00
kbfs: avoid using PrivateTmp for systemd service
The kbfs service does not seem to actually work with a PrivateTmp. A PrivateTmp seems as appropriate for kbfs as anything else, but the upstream service does not use it either <https://github.com/keybase/client/blob/master/packaging/linux/systemd/kbfs.service>
This commit is contained in:
parent
635563f245
commit
7560dc942a
1 changed files with 0 additions and 1 deletions
|
@ -52,7 +52,6 @@ in {
|
|||
"${pkgs.kbfs}/bin/kbfsfuse ${toString cfg.extraFlags} ${mountPoint}";
|
||||
ExecStopPost = "/run/wrappers/bin/fusermount -u ${mountPoint}";
|
||||
Restart = "on-failure";
|
||||
PrivateTmp = true;
|
||||
};
|
||||
|
||||
Install.WantedBy = [ "default.target" ];
|
||||
|
|
Loading…
Reference in a new issue