diff options
-rw-r--r-- | common/ssh.nix | 5 | ||||
-rw-r--r-- | usecases/desktop/default.nix | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/common/ssh.nix b/common/ssh.nix index 8bdabc2..f0a0676 100644 --- a/common/ssh.nix +++ b/common/ssh.nix | |||
@@ -3,11 +3,6 @@ inputs: | |||
3 | { config, pkgs, modulesPath, lib, ... }: | 3 | { config, pkgs, modulesPath, lib, ... }: |
4 | 4 | ||
5 | { | 5 | { |
6 | programs.gnupg.agent = { | ||
7 | enable = true; | ||
8 | enableSSHSupport = true; | ||
9 | }; | ||
10 | |||
11 | services.openssh = { | 6 | services.openssh = { |
12 | enable = true; | 7 | enable = true; |
13 | passwordAuthentication = false; | 8 | passwordAuthentication = false; |
diff --git a/usecases/desktop/default.nix b/usecases/desktop/default.nix index ea87de2..f44c725 100644 --- a/usecases/desktop/default.nix +++ b/usecases/desktop/default.nix | |||
@@ -10,4 +10,9 @@ inputs: | |||
10 | (import ./pipewire.nix inputs) | 10 | (import ./pipewire.nix inputs) |
11 | (import ../common/dnscrypt.nix inputs) | 11 | (import ../common/dnscrypt.nix inputs) |
12 | ]; | 12 | ]; |
13 | |||
14 | programs.gnupg.agent = { | ||
15 | enable = true; | ||
16 | enableSSHSupport = true; | ||
17 | }; | ||
13 | } | 18 | } |