diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2025-04-16 21:15:33 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2025-04-16 21:15:33 +0200 |
| commit | a3222228cab2e8e828260b81220c4343e9abf488 (patch) | |
| tree | eaadb247adc8205dc1bcac2e628e6a3e802daf0a /modules/home-manager/personal/programs/firefox | |
| parent | 17d1586f41bfe944070f12bb2c82299ac1844de4 (diff) | |
home: firefox: fix treestyletabs css
Diffstat (limited to 'modules/home-manager/personal/programs/firefox')
| -rw-r--r-- | modules/home-manager/personal/programs/firefox/default.nix | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/modules/home-manager/personal/programs/firefox/default.nix b/modules/home-manager/personal/programs/firefox/default.nix index 2bcf72a..d103c3d 100644 --- a/modules/home-manager/personal/programs/firefox/default.nix +++ b/modules/home-manager/personal/programs/firefox/default.nix @@ -11,19 +11,6 @@ with lib; let inherit (pkgs.lib.personal) toUserJS; }; engines = import ./engines.nix {inherit lib pkgs;}; - userchrome = let - userchromeTSTout = ./userchrome/treestyletabs-outer.css; - userchromeTSTin = config.lib.stylix.colors { - template = builtins.readFile ./userchrome/treestyletabs-inner.css; - extension = ".css"; - }; - in - '' - @import "${userchromeTSTout}"; - '' - + lib.optionalString (config.lib ? stylix) '' - // @import "${userchromeTSTin}"; - ''; webappsWithIds = (builtins.foldl' ({ counter, @@ -128,7 +115,7 @@ in { order = ["Searx" "Wikipedia"]; }; extraConfig = userjs.default; - userChrome = userchrome; + userChrome = ./userchrome/treestyletabs-outer.css; }; videoconferencing = { @@ -151,7 +138,7 @@ in { default = "Searx"; }; extraConfig = userjs.videoconferencing; - userChrome = userchrome; + userChrome = ./userchrome/treestyletabs-outer.css; }; } webappsWithIds; |
