home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 79ddf80940fa2f7da024c2d5673718b2f798c4fc
parent a0aec3ee3dcf9825a31fc1117cc9d8021c4be8a4
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 16 Sep 2022 17:35:56 +0200

systems/modules: remove gnupg variable

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/modules/shell/gnupg.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systems/modules/shell/gnupg.nix b/systems/modules/shell/gnupg.nix @@ -9,7 +9,7 @@ in }; config = mkIf cfg.enable { environment = { - variables.GNUPGHOME = "$XDG_CONFIG_HOME/gnupg"; + # variables.GNUPGHOME = "$XDG_CONFIG_HOME/gnupg"; systemPackages = [ pkgs.gnupg ]; }; };