Enable gpg

This commit is contained in:
buffet 2022-08-22 17:05:46 +00:00
parent 72a27b1b11
commit ac489b01da
2 changed files with 11 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./bash.nix
./chromium.nix
./git.nix
./gpg.nix
./mako.nix
./nvim.nix
./pipewire.nix

10
programs/gpg.nix Normal file
View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
home-manager.users.buffet = {
programs.gpg.enable = true;
};
}