feat(gpg): add gpg config
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
./btop.nix
|
||||
./direnv.nix
|
||||
./eza.nix
|
||||
./gpg.nix
|
||||
./mopidy.nix
|
||||
./nh.nix
|
||||
./nix-index.nix
|
||||
|
||||
12
users/modules/gpg.nix
Normal file
12
users/modules/gpg.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{pkgs, ...}:{
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
mutableKeys = true;
|
||||
mutableTrust = true;
|
||||
};
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
pinentry.package = pkgs.pinentry-emacs;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user