Add bunch more programs / services modularly

This commit is contained in:
Sravan Balaji
2024-03-24 12:14:10 -04:00
parent 711b98a9b0
commit 7f1c5c5baa
21 changed files with 191 additions and 0 deletions

8
system/security/gpg.nix Normal file
View File

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