diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-22 19:32:23 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-22 19:32:23 -0700 |
| commit | b9781d7882e544a2d64c2e70ba9685fa870772bc (patch) | |
| tree | eedd606c76db1d0280083734b0b51b04682a3ebf /hosts | |
| parent | e83e084c5968ac53af169e1e67e9bb2895a723aa (diff) | |
Enable gnupg on copenhagen
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/copenhagen/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/copenhagen/configuration.nix b/hosts/copenhagen/configuration.nix index 1335a66..3aaf862 100644 --- a/hosts/copenhagen/configuration.nix +++ b/hosts/copenhagen/configuration.nix @@ -71,7 +71,15 @@ }; }; + programs = { + gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + }; + services = { + pcscd.enable = true; openssh = { enable = true; ports = [ 42069 ]; |