fixing a LOT of typos
This commit is contained in:
parent
795bb17857
commit
b183b789b4
25 changed files with 57 additions and 65 deletions
17
modules/_home-manager/gpg.nix
Normal file
17
modules/_home-manager/gpg.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ home, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gnupg
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".gnupg/gpg-agent.conf".text = ''
|
||||
default-cache-ttl 34560000
|
||||
max-cache-ttl 34560000
|
||||
allow-loopback-pinentry
|
||||
'';
|
||||
".gnupg/gpg.conf".text = ''
|
||||
pinentry-mode loopback
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue