Felix Schröter
e2c1947d85
Adwaita-dark doesn't seem to be supported any longer. Adwaita itself supports the dark mode, so this should be fine.
9 lines
209 B
Nix
9 lines
209 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
gtk.enable = true;
|
|
gtk.theme.name = "Adwaita";
|
|
gtk.gtk3.extraConfig.gtk-application-prefer-dark-theme = true;
|
|
gtk.gtk4.extraConfig.gtk-application-prefer-dark-theme = true;
|
|
}
|