moved config files from home/river/* to home/*

This commit is contained in:
2026-07-05 23:31:26 -05:00
parent 3c5133f721
commit 4f9269315b
140 changed files with 1 additions and 4 deletions
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
services.gpg-agent = {
enable = true;
defaultCacheTtl = 1800;
maxCacheTtl = 1800;
pinentry.package = pkgs.pinentry-qt;
};
services.gpg-agent.extraConfig = ''
pinentry-program ${pkgs.pinentry-qt}/bin/pinentry
'';
programs.gpg = {
enable = true;
settings = {
auto-key-locate = "local,wkd,keyserver";
keyserver = "hkps://keys.openpgp.org";
};
};
}