starting dbrw config
All checks were successful
/ update-readme (push) Successful in 50s

This commit is contained in:
dim
2024-12-30 11:27:00 +07:00
parent 863253bc74
commit 4c874e960d
45 changed files with 1068 additions and 594 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ pass seahorse gnome-keyring pinentry-all ];
services.gnome-keyring.enable = true;
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
maxCacheTtl = 604800;
defaultCacheTtl = 604800;
enableSshSupport = true;
enableZshIntegration = true;
verbose = true;
enableScDaemon = false;
pinentryPackage = pkgs.pinentry-all;
};
}