diff options
Diffstat (limited to 'system-profiles')
-rw-r--r-- | system-profiles/core.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/system-profiles/core.nix b/system-profiles/core.nix index 0ff3a9f4..49869e60 100644 --- a/system-profiles/core.nix +++ b/system-profiles/core.nix | |||
@@ -70,7 +70,10 @@ in { | |||
70 | useUserPackages = true; | 70 | useUserPackages = true; |
71 | }; | 71 | }; |
72 | 72 | ||
73 | sops.gnupgHome = lib.mkIf hasSops "/root/.gnupg"; | 73 | sops = lib.mkIf hasSops { |
74 | gnupgHome = "/root/.gnupg"; | ||
75 | sshKeyPaths = []; | ||
76 | }; | ||
74 | 77 | ||
75 | environment.systemPackages = [ pkgs.git ] ++ lib.optional hasSops pkgs.gnupg; | 78 | environment.systemPackages = [ pkgs.git ] ++ lib.optional hasSops pkgs.gnupg; |
76 | }; | 79 | }; |