1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02: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"
+ optionalString cfg.verbose " --verbose";
ExecReload = "${gpgPkg}/bin/gpgconf --reload gpg-agent";
Environment = "GNUPGHOME=${homedir}";
Environment = [ "GNUPGHOME=${homedir}" ];
};
};