fix(cursor theme): set it for x11 to not have default theme at first
This commit is contained in:
parent
3ab7319a4f
commit
12659e916f
1 changed files with 13 additions and 5 deletions
|
@ -7,6 +7,19 @@
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
home.pointerCursor = {
|
||||||
|
name = "Dracula-cursors";
|
||||||
|
package = pkgs.dracula-icon-theme;
|
||||||
|
size = 24;
|
||||||
|
|
||||||
|
gtk.enable = true;
|
||||||
|
|
||||||
|
x11 = {
|
||||||
|
enable = true;
|
||||||
|
defaultCursor = "Dracula-cursors";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = {
|
theme = {
|
||||||
|
@ -18,11 +31,6 @@ in
|
||||||
name = "Flat-Remix-Violet-Dark";
|
name = "Flat-Remix-Violet-Dark";
|
||||||
package = pkgs.flat-remix-icon-theme;
|
package = pkgs.flat-remix-icon-theme;
|
||||||
};
|
};
|
||||||
|
|
||||||
cursorTheme = {
|
|
||||||
name = "Dracula-cursors";
|
|
||||||
package = pkgs.dracula-icon-theme;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
xresources.extraConfig = builtins.readFile("${dracula-xresources}/Xresources");
|
xresources.extraConfig = builtins.readFile("${dracula-xresources}/Xresources");
|
||||||
|
|
Loading…
Reference in a new issue