[home] split out home-manager from configuration

This commit is contained in:
2024-06-28 03:04:24 +08:00
parent 28810c407b
commit 6f9de6434c
8 changed files with 23 additions and 18 deletions
+10
View File
@@ -0,0 +1,10 @@
{ pkgs, lib, config, ... }:
{
programs.gnupg = {
enable = true;
agent = {
enable = true;
enableSSHSupport = true;
};
};
}