this post was submitted on 16 Jan 2024
1 points (54.5% liked)

nixos

1203 readers
1 users here now

All about NixOS - https://nixos.org/

founded 4 years ago
 

I'm a semi-recent NixOS user and one thing that bothers me since the beginning is that when I change the Gnome theme (between light and dark), Firefox doesn't adapt. The system theme in Firefox is enabled, but it always displays the light theme, no matter what theme is selected in Gnome.

Internet search, including searching through NixOS discourse, packages, options and Nixpkgs repo surfaced a solution.

Any ideas or tips how to achieve system theme integration for Firefox on NixOS?

NixOS 23.11 / Gnome 45 / sway

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 5 months ago (1 children)

Works out of the box here, NixOS 23.11 / GNOME 45 / X11, so I suspect this might be either a Wayland or Sway problem.

When I switch to dark mode in GNOME, both Firefox's UI, and the sites that support dark mode, switch.

[–] [email protected] 1 points 5 months ago (1 children)

Hm, thanks for sharing. Maybe a clean install will sort out the issue. Should try that when I'll have some time.

[–] [email protected] 0 points 5 months ago (1 children)

I would suggest trying with Wayland + GNOME, using GNOME's default WM, rather than sway. If that works, and sway doesn't, then the issue is somewhere between GNOME and Sway. That should help narrow things down.

[–] [email protected] 2 points 5 months ago

I removed an environment variable XDG_CURRENT_DESKTOP = "sway"; (which I added long ago from some tutorial) and it solved the issue. Thank you for your input! :)

[–] [email protected] 0 points 5 months ago* (last edited 5 months ago) (1 children)

I have this in my config and I use Hyprland:

{
  dconf.settings = {
    "org/gnome/desktop/interface" = {
      color-scheme = "prefer-dark";
    };
  };
}
[–] [email protected] 2 points 5 months ago

Thank you for the comment, this is not what I'm looking for however. I want a) a dynamic system theme (I already can manually change it to "dark") which I use a Gnome extension for and b) that Firefox follows the system theme.