1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

gpg-agent: set Environment to a list

This commit is contained in:
Nick Cao 2022-07-10 22:10:55 +08:00 committed by Robert Helgesson
parent 45ef70cc73
commit 1e66e035e1
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -271,7 +271,7 @@ in {
ExecStart = "${gpgPkg}/bin/gpg-agent --supervised" ExecStart = "${gpgPkg}/bin/gpg-agent --supervised"
+ optionalString cfg.verbose " --verbose"; + optionalString cfg.verbose " --verbose";
ExecReload = "${gpgPkg}/bin/gpgconf --reload gpg-agent"; ExecReload = "${gpgPkg}/bin/gpgconf --reload gpg-agent";
Environment = "GNUPGHOME=${homedir}"; Environment = [ "GNUPGHOME=${homedir}" ];
}; };
}; };