dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

commit 972b0610c6099d789501df34468366721d13be6f
parent 0cbcbc016a212dc136d2157697e555433cb331fd
Author: Chris <chris@echoz.io>
Date:   Thu,  7 May 2026 21:13:48 +0200

fix(firefox): update firefox for new version. requires manual migration

Diffstat:
Mmodules/firefox/default.nix | 2+-
Mmodules/firefox/userChrome.css.nix | 4++++
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/modules/firefox/default.nix b/modules/firefox/default.nix @@ -6,7 +6,7 @@ environment.persistence."/fix".users.${user}.directories = [ { - directory = ".mozilla"; + directory = ".config/mozilla/firefox"; mode = "0700"; } ]; diff --git a/modules/firefox/userChrome.css.nix b/modules/firefox/userChrome.css.nix @@ -1,6 +1,10 @@ style: # css '' @-moz-document url(chrome://browser/content/browser.xul), url(chrome://browser/content/browser.xhtml) { + body { + background-color: transparent !important; + } + #browser { background-color: ${style.colors.bg.rgba} !important; }