1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #67409 from duhirsch/module/gpg/addToSystemPackages

nixos/gnupg: Add gpg to systemPackages
This commit is contained in:
Marek Mahut 2019-08-24 22:09:02 +02:00 committed by GitHub
commit 8a41fcb552
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,8 @@ in
systemd.user.sockets.dirmngr = mkIf cfg.dirmngr.enable {
wantedBy = [ "sockets.target" ];
};
environment.systemPackages = with pkgs; [ cfg.package ];
systemd.packages = [ cfg.package ];
environment.interactiveShellInit = ''