gpg: move from module to user config

This commit is contained in:
2025-03-16 14:02:51 +00:00
parent d1c2adface
commit c1f28192a0
10 changed files with 15 additions and 35 deletions

View File

@ -32,6 +32,7 @@ in
home-manager.users.${name} = {
imports = [
./git.nix
./gpg.nix
./shell.nix
];

14
users/jordan/gpg.nix Normal file
View File

@ -0,0 +1,14 @@
{
...
}:
{
home.programs.gpg = {
enable = true;
};
home.services.gpg-agent = {
enable = true;
enableSshSupport = true;
};
}