Enable gpg
This commit is contained in:
parent
72a27b1b11
commit
ac489b01da
2 changed files with 11 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
./bash.nix
|
./bash.nix
|
||||||
./chromium.nix
|
./chromium.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
|
./gpg.nix
|
||||||
./mako.nix
|
./mako.nix
|
||||||
./nvim.nix
|
./nvim.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
|
|
10
programs/gpg.nix
Normal file
10
programs/gpg.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
programs.gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
enableSSHSupport = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home-manager.users.buffet = {
|
||||||
|
programs.gpg.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue