feat(gpg): add gpg config
This commit is contained in:
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