fix(cursor theme): set it for x11 to not have default theme at first

This commit is contained in:
matt1432 2023-10-03 11:40:34 -04:00
parent 3ab7319a4f
commit 12659e916f

View file

@ -7,6 +7,19 @@
};
in
{
home.pointerCursor = {
name = "Dracula-cursors";
package = pkgs.dracula-icon-theme;
size = 24;
gtk.enable = true;
x11 = {
enable = true;
defaultCursor = "Dracula-cursors";
};
};
gtk = {
enable = true;
theme = {
@ -18,11 +31,6 @@ in
name = "Flat-Remix-Violet-Dark";
package = pkgs.flat-remix-icon-theme;
};
cursorTheme = {
name = "Dracula-cursors";
package = pkgs.dracula-icon-theme;
};
};
xresources.extraConfig = builtins.readFile("${dracula-xresources}/Xresources");