mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
pass-secret-service: add GNUPGHOME to service env vars
This is nescesarry for non-default locations, and without it, many programs like element-desktop break in very confusing ways. Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
437ec62009
commit
30e04f3d47
1 changed files with 1 additions and 0 deletions
|
@ -58,6 +58,7 @@ in {
|
||||||
optionalString (cfg.storePath != null) "--path ${cfg.storePath}"
|
optionalString (cfg.storePath != null) "--path ${cfg.storePath}"
|
||||||
}";
|
}";
|
||||||
BusName = busName;
|
BusName = busName;
|
||||||
|
Environment = [ "GNUPGHOME=${config.programs.gpg.homedir}" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
Install.WantedBy = [ "default.target" ];
|
Install.WantedBy = [ "default.target" ];
|
||||||
|
|
Loading…
Reference in a new issue