Split system config into tons of modules!

This commit is contained in:
Emmet
2023-06-20 22:08:25 -05:00
parent 68854ad9f3
commit ab505d1daf
21 changed files with 266 additions and 180 deletions

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

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}