dotfiles/nix/hosts/t490/programs.nix

25 lines
400 B
Nix
Raw Permalink Normal View History

2025-01-05 13:56:55 +00:00
{ pkgs, ... }:
{
2025-01-12 11:48:38 +00:00
programs = {
dconf.enable = true;
2025-01-12 11:48:38 +00:00
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
2025-01-05 13:56:55 +00:00
2025-01-12 11:48:38 +00:00
firefox = {
enable = true;
2025-01-05 13:56:55 +00:00
2025-01-12 11:48:38 +00:00
languagePacks = [ "en-GB" ];
2025-01-05 13:56:55 +00:00
2025-01-12 11:48:38 +00:00
preferences = {
"intl.accept_languages" = "en-GB, en";
"intl.regional_prefs.use_os_locales" = true;
};
2025-01-05 13:56:55 +00:00
};
};
}