mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
kbfs: fix systemd service PATH
This commit is contained in:
parent
8ff7d934b2
commit
581ad6fc29
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ in
|
|||
let
|
||||
mountPoint = "\"%h/${cfg.mountPoint}\"";
|
||||
in {
|
||||
Environment = "PATH=/run/wrappers KEYBASE_SYSTEMD=1";
|
||||
Environment = "PATH=/run/wrappers/bin KEYBASE_SYSTEMD=1";
|
||||
ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${mountPoint}";
|
||||
ExecStart ="${pkgs.kbfs}/bin/kbfsfuse ${toString cfg.extraFlags} ${mountPoint}";
|
||||
ExecStopPost = "/run/wrappers/bin/fusermount -u ${mountPoint}";
|
||||
|
|
Loading…
Reference in a new issue