mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 08:09:45 +01: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
|
let
|
||||||
mountPoint = "\"%h/${cfg.mountPoint}\"";
|
mountPoint = "\"%h/${cfg.mountPoint}\"";
|
||||||
in {
|
in {
|
||||||
Environment = "PATH=/run/wrappers KEYBASE_SYSTEMD=1";
|
Environment = "PATH=/run/wrappers/bin KEYBASE_SYSTEMD=1";
|
||||||
ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${mountPoint}";
|
ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${mountPoint}";
|
||||||
ExecStart ="${pkgs.kbfs}/bin/kbfsfuse ${toString cfg.extraFlags} ${mountPoint}";
|
ExecStart ="${pkgs.kbfs}/bin/kbfsfuse ${toString cfg.extraFlags} ${mountPoint}";
|
||||||
ExecStopPost = "/run/wrappers/bin/fusermount -u ${mountPoint}";
|
ExecStopPost = "/run/wrappers/bin/fusermount -u ${mountPoint}";
|
||||||
|
|
Loading…
Reference in a new issue