chore(home-manager): temporarely disable gpg config file generation

This commit is contained in:
transcaffeine 2025-03-04 20:35:38 +01:00
parent 6d1a757145
commit d13363f709
Signed by: transcaffeine
GPG Key ID: 03624C433676E465

View File

@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, config, ... }:
let
repo = (builtins.fetchGit {
@ -53,4 +53,7 @@ in {
"no-allow-external-cache" = gpg_agent_config."no-allow-external-cache";
};
};
home.file."${config.programs.gpg.homedir}/gpg.conf".enable = false;
home.file."${config.programs.gpg.homedir}/gpg-agent.conf".enable = false;
}