hyprland: added dconf settings for dark mode

This commit is contained in:
Aly Raffauf 2024-03-28 22:12:08 -04:00
parent a02b76d070
commit 0736ea0c8b

View file

@ -86,6 +86,7 @@
gtk = {
enable = true;
theme = {
package = pkgs.catppuccin-gtk.override {
accents = [ "mauve" ];
@ -95,6 +96,7 @@
};
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
};
iconTheme = {
package = pkgs.catppuccin-papirus-folders.override {
flavor = "frappe";
@ -102,11 +104,19 @@
};
name = "Papirus-Dark";
};
font = {
name = "NotoSans Nerd Font Regular";
package = pkgs.nerdfonts.override { fonts = [ "Noto" ]; };
size = 11;
};
};
dconf.settings = {
"org/gnome/desktop/interface" = {
gtk-theme = "Catppuccin-Frappe-Compact-Mauve-Dark";
color-scheme = "prefer-dark";
};
};
};
}