This commit is contained in:
Thilo Billerbeck 2025-06-10 20:50:05 +02:00
parent f052b6f0ce
commit bb1cae058f
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 77B4535A08DCD774
2 changed files with 16 additions and 0 deletions

View file

@ -34,6 +34,7 @@ with lib;
./../programs/ssh.nix
./../programs/vscode.nix
./../programs/zed.nix
./../programs/gpg.nix
./../../nix.nix
./packages.nix
];

View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
defaultCacheTtl = 43200;
maxCacheTtl = 43200;
pinentry.package = pkgs.pinentry-curses;
};
}