Try and define themes in dconf

This commit is contained in:
2026-05-03 01:36:46 -05:00
parent a8e1a504ca
commit 0003dc0699
2 changed files with 16 additions and 2 deletions
+16 -1
View File
@@ -4,10 +4,25 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
programs.dconf = {
enable = true;
profiles.user.databases = [
{
settings."org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
cursor-theme = "breeze_cursors";
cursor-size = 24;
gtk-theme = "Breeze";
icon-theme = "Papirus";
};
}
];
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Themes # Themes
adwaita-icon-theme
kdePackages.breeze kdePackages.breeze
kdePackages.breeze-gtk
papirus-icon-theme papirus-icon-theme
# Common utils # Common utils
-1
View File
@@ -53,7 +53,6 @@
# Cursor theme for Hyprland and regular Wayland/XWayland clients. # Cursor theme for Hyprland and regular Wayland/XWayland clients.
environment.sessionVariables = { environment.sessionVariables = {
GTK_THEME = "Breeze";
XCURSOR_THEME = "breeze_cursors"; XCURSOR_THEME = "breeze_cursors";
XCURSOR_SIZE = "24"; XCURSOR_SIZE = "24";
HYPRCURSOR_SIZE = "24"; HYPRCURSOR_SIZE = "24";