small cleanup and version bump
This commit is contained in:
parent
d585a60e1d
commit
21e01f75dc
14 changed files with 115 additions and 380 deletions
15
home-manager/shared/programs/shell/gpg.nix
Normal file
15
home-manager/shared/programs/shell/gpg.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
_: {
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
settings = {
|
||||
pinentry-mode = "loopback";
|
||||
};
|
||||
};
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
extraConfig = ''
|
||||
allow-loopback-pinentry
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue