Skip to content

Instantly share code, notes, and snippets.

@MatthewCroughan
Created March 24, 2021 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MatthewCroughan/763d46abe838a09c0e87853bc2cee435 to your computer and use it in GitHub Desktop.
Save MatthewCroughan/763d46abe838a09c0e87853bc2cee435 to your computer and use it in GitHub Desktop.

The following home-manager module does not make quasselClient dark. It makes some other things dark.

  qt = {
    enable = true;
    platformTheme = "gtk";
    style = {
      name = "adwaita-dark";
      package = pkgs.adwaita-qt;
    };
  };

However, outside of home-manager, using the NixOS modules, this does work and makes quasselClient appear dark. Why?

  qt5 = {
    enable = true;
    platformTheme = "gnome";
    style = "adwaita-dark";
  };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment