gpg: init

This commit is contained in:
Katherina Walshe-Grey 2025-03-19 17:17:51 +00:00
parent 780a18f627
commit dc7fdfb7ea
2 changed files with 10 additions and 1 deletions

View file

@ -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
];
}
}

8
common/gpg.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}