Refactor programs

This commit is contained in:
Oliver Davies 2025-01-12 11:48:38 +00:00
parent 005c34156b
commit 8df2e5c1b9

View file

@ -1,13 +1,14 @@
{ pkgs, ... }:
{
programs.gnupg.agent = {
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
programs.firefox = {
firefox = {
enable = true;
languagePacks = [ "en-GB" ];
@ -17,4 +18,5 @@
"intl.regional_prefs.use_os_locales" = true;
};
};
};
}