resolve evaluation issues on nix-darwin

This commit is contained in:
2026-09-03 21:41:39 +02:00
parent 930c7b6018
commit 8298f90315
7 changed files with 31 additions and 19 deletions
+7 -6
View File
@@ -7,7 +7,7 @@
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-qt;
pinentry.package = lib.mkIf config.lumpiastyHome.linux pkgs.pinentry-qt;
extraConfig = ''
listen-backlog 256
'';
@@ -15,11 +15,12 @@
programs.gpg.enable = true;
programs.git.signing = {
format = "openpgp";
key = "EA287B39E5F69945";
signByDefault = true;
};
programs.git.signing =
lib.mkIf config.lumpiastyHome.linux { # TODO: on macos too
format = "openpgp";
key = "EA287B39E5F69945";
signByDefault = true;
};
programs.bash.enable = lib.mkDefault true;
};