chore: switch to librewolf
Some checks failed
/ test (push) Failing after 4m31s

This commit is contained in:
nydragon 2025-03-06 19:13:57 +01:00
parent e85b6af95b
commit 0c92def8b2
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 6 additions and 8 deletions

View file

@ -10,7 +10,7 @@
}: }:
lib.mkIf config.programs.firefox.enable { lib.mkIf config.programs.firefox.enable {
programs.firefox = { programs.firefox = {
package = pkgs.firefox-beta; package = pkgs.librewolf;
languagePacks = [ languagePacks = [
"de" "de"
"en-GB" "en-GB"

View file

@ -8,16 +8,14 @@
config = lib.mkIf config.modules.system.roles.desktop.enable { config = lib.mkIf config.modules.system.roles.desktop.enable {
qt = { qt = {
enable = true; enable = true;
platformTheme = "gtk2"; platformTheme = "gtk2"; # Follow gtk theme
#platformTheme = "qt5ct";
#style = "kvantum";
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
#vimix-icon-theme (catppuccin-papirus-folders.override {
#pop-icon-theme accent = "lavender";
catppuccin-papirus-folders flavor = "frappe";
#catppuccin-kvantum })
]; ];
}; };
} }