From d9f3008c506353c8de3ffc501a26a822b8435f1e Mon Sep 17 00:00:00 2001 From: winston Date: Mon, 16 Sep 2024 23:37:11 +0200 Subject: [PATCH] fix: move macOS GNUPGHOME to `~` --- home/xdg.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/xdg.nix b/home/xdg.nix index cab803a..f7f2144 100644 --- a/home/xdg.nix +++ b/home/xdg.nix @@ -57,7 +57,7 @@ in ]); }; - programs.gpg.homedir = "${configHome}/gnupg"; + programs.gpg.homedir = lib.mkIf isLinux "${configHome}/gnupg"; xdg = { enable = true;