Move gpg to its own service

This commit is contained in:
Bun 2025-05-08 10:55:26 -04:00
parent 5259082f76
commit 01d16e03c8
3 changed files with 9 additions and 4 deletions

View file

@ -7,8 +7,5 @@
extraConfig.safe.directory = "/etc/nixos";
};
home.packages = with pkgs; [
git-crypt
gnupg
];
home.packages = with pkgs; [ git-crypt ];
}

View file

@ -2,6 +2,7 @@
{
imports = [
./easyeffects
./gpg
./mpd
./playerctl
];

View file

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