This commit is contained in:
TheCrazyInsanity
2026-01-08 18:39:49 +00:00
parent 68f8144c18
commit b085512775
2 changed files with 15 additions and 2 deletions

View File

@@ -8,9 +8,21 @@
programs.kdeconnect.enable = true;
environment.systemPackages = with pkgs; [
firefox # Odd spot, but my choice of browser is determined by environment.
kdePackages.kate
# kdePackages.kdeconnect-kde
];
programs.firefox = {
enable = true;
policies.ExtensionSettings = {
"*".installation_mode = "blocked"; # blocks all addons except the ones specified below
# uBlock Origin:
"uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed";
};
};
};
services.automatic-timezoned.enable = true;
}