mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
Refactors, konawall-py for darwin, sumireko update to Sonoma
This commit is contained in:
parent
091ddb5b91
commit
bc61d82487
151 changed files with 691 additions and 792 deletions
19
home/profiles/graphical/gpg.nix
Normal file
19
home/profiles/graphical/gpg.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib.modules) mkDefault mkMerge;
|
||||
in {
|
||||
services.gpg-agent = {
|
||||
enable = mkDefault true;
|
||||
enableExtraSocket = true;
|
||||
enableSshSupport = true;
|
||||
sshKeys = [
|
||||
"59921D2F4E6DF7EEC3CB2934BD3D53666007B1AB" # kat@inskip.me
|
||||
];
|
||||
extraConfig = mkMerge [
|
||||
"auto-expand-secmem 0x30000" # otherwise "gpg: public key decryption failed: Cannot allocate memory"
|
||||
"pinentry-timeout 30"
|
||||
"allow-loopback-pinentry"
|
||||
"enable-ssh-support"
|
||||
"no-allow-external-cache"
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue