mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-16 20:23:04 +01:00
personal-gui: Use correct way to specify gtk dark theme
This commit is contained in:
parent
1187b7cf80
commit
b14efd5d9a
1 changed files with 12 additions and 3 deletions
|
|
@ -15,9 +15,18 @@
|
|||
font = {
|
||||
name = "DejaVu Sans";
|
||||
};
|
||||
theme = {
|
||||
package = pkgs.gnome.gnome-themes-extra;
|
||||
name = "Adwaita-dark";
|
||||
theme.name = "Adwaita";
|
||||
gtk3.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = 1;
|
||||
};
|
||||
gtk4.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = 1;
|
||||
};
|
||||
};
|
||||
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue