fix(home): Breaking updates to home-manager

This commit is contained in:
Jalil David Salamé Messina 2024-03-17 00:17:37 +01:00
parent 8fc5b92711
commit d85b8c61e0
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -36,7 +36,6 @@ in
programs.direnv.nix-direnv.enable = true; programs.direnv.nix-direnv.enable = true;
# ls replacement # ls replacement
programs.eza.enable = true; programs.eza.enable = true;
programs.eza.enableAliases = true;
programs.eza.git = true; programs.eza.git = true;
programs.eza.icons = true; programs.eza.icons = true;
# GnuPG # GnuPG
@ -66,7 +65,7 @@ in
# GPG Agent # GPG Agent
services.gpg-agent.enable = true; services.gpg-agent.enable = true;
services.gpg-agent.maxCacheTtl = 86400; services.gpg-agent.maxCacheTtl = 86400;
services.gpg-agent.pinentryFlavor = if config.jhome.gui.enable then "qt" else "curses"; services.gpg-agent.pinentryPackage = if config.jhome.gui.enable then pkgs.pinentry-qt else pkgs.pinentry-curses;
services.gpg-agent.extraConfig = "allow-preset-passphrase"; services.gpg-agent.extraConfig = "allow-preset-passphrase";
# Spotifyd # Spotifyd
services.spotifyd.enable = true; services.spotifyd.enable = true;