mirror of
https://github.com/nix-community/home-manager.git
synced 2024-12-14 11:57:55 +00:00
pass-secret-service: fix systemd unit install option (#1959)
This commit is contained in:
parent
b4e3f069f1
commit
d4278212b5
1 changed files with 1 additions and 1 deletions
|
@ -18,11 +18,11 @@ in {
|
|||
systemd.user.services.pass-secret-service = {
|
||||
Unit = { Description = "Pass libsecret service"; };
|
||||
Service = {
|
||||
Install = { WantedBy = [ "default.target" ]; };
|
||||
# pass-secret-service doesn't use environment variables for some reason.
|
||||
ExecStart =
|
||||
"${pkgs.pass-secret-service}/bin/pass_secret_service --path ${config.programs.password-store.settings.PASSWORD_STORE_DIR}";
|
||||
};
|
||||
Install = { WantedBy = [ "default.target" ]; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue