🚀 add gpg
parent
adbdf807a3
commit
5430db5431
|
@ -24,6 +24,7 @@
|
|||
programs = {
|
||||
exa.enable = true;
|
||||
bat.enable = true;
|
||||
gpg.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
userEmail = "mr.x@moritzboeh.me";
|
||||
extraConfig.init.defaultBranch = "main";
|
||||
delta.enable = true;
|
||||
signing = {
|
||||
key = "0x0498CF2DD8CFC6AA";
|
||||
signByDefault = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
./agenix.nix
|
||||
./diskstation
|
||||
./dunst
|
||||
./gpg.nix
|
||||
./jupyter.nix
|
||||
./kdeconnect.nix
|
||||
./keyring.nix
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.moritz = {
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
defaultCacheTtl = 3600;
|
||||
};
|
||||
};
|
||||
services.pcscd.enable = true;
|
||||
}
|
Loading…
Reference in New Issue