resolve evaluation issues on nix-darwin
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user