fix: enable colortheme for firefox-based browsers

This commit is contained in:
2026-02-22 12:15:48 +01:00
parent e62790f2c7
commit b9c7c099e7
4 changed files with 26 additions and 4 deletions

View File

@@ -1,7 +1,9 @@
{ {
config, config,
inputs, inputs,
lib,
pkgs, pkgs,
...
}: }:
let let

View File

@@ -11,6 +11,13 @@
programs.firefox = { programs.firefox = {
enable = true; enable = true;
} }
// (import ./firefox-base.nix { inherit config inputs pkgs; }); // (import ./firefox-base.nix {
inherit
config
inputs
lib
pkgs
;
});
}; };
} }

View File

@@ -13,6 +13,13 @@
programs.librewolf = { programs.librewolf = {
enable = true; enable = true;
} }
// (import ./firefox-base.nix { inherit config inputs pkgs; }); // (import ./firefox-base.nix {
inherit
config
inputs
lib
pkgs
;
});
}; };
} }

View File

@@ -31,8 +31,14 @@ in
home-manager.sharedModules = [ home-manager.sharedModules = [
{ {
stylix.targets = { stylix.targets = {
firefox.profileNames = [ "default" ]; firefox = {
librewolf.profileNames = [ "default" ]; profileNames = [ "default" ];
colorTheme.enable = true;
};
librewolf = {
profileNames = [ "default" ];
colorTheme.enable = true;
};
kitty.variant256Colors = true; kitty.variant256Colors = true;
gnome.enable = false; gnome.enable = false;
gtk.enable = false; gtk.enable = false;