diff --git a/common/default.nix b/common/default.nix index 81a7423..c60088e 100644 --- a/common/default.nix +++ b/common/default.nix @@ -4,6 +4,7 @@ ./base-server ./users ./boot.nix + ./gpg.nix ./home-manager.nix ./misc.nix ./nginx.nix @@ -14,4 +15,4 @@ ./security.nix ./steam.nix ]; -} \ No newline at end of file +} diff --git a/common/gpg.nix b/common/gpg.nix new file mode 100644 index 0000000..07d1a0f --- /dev/null +++ b/common/gpg.nix @@ -0,0 +1,8 @@ +{ config, lib, pkgs, ... }: + +{ + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; +}