hyprland: set cursor and gtk themes to Vanilla-DMZ-AA and breeze

This commit is contained in:
Aly Raffauf 2024-03-24 11:41:16 -04:00
parent 6354ed37f3
commit d4ddbfb4e3

View file

@ -14,16 +14,6 @@
udiskie
];
services.mako = {
enable = true;
font = "DroidSansM Nerd Font Mono 11";
backgroundColor = "#00000080";
textColor = "#FFFFFF";
borderRadius = 10;
defaultTimeout = 10000;
padding = "15";
};
wayland.windowManager.hyprland = {
enable = true;
extraConfig = builtins.readFile ./hyprland.conf;
@ -31,4 +21,28 @@
xdg.configFile."hypr/hypridle.conf".source = ./hypridle.conf;
xdg.configFile."hypr/hyprlock.conf".source = ./hyprlock.conf;
home.pointerCursor = {
gtk.enable = true;
# x11.enable = true;
package = pkgs.vanilla-dmz;
name = "Vanilla-DMZ-AA";
size = 24;
};
gtk = {
enable = true;
theme = {
package = pkgs.kdePackages.breeze-gtk;
name = "breeze-gtk";
};
iconTheme = {
package = pkgs.kdePackages.breeze-icons;
name = "Breeze";
};
font = {
name = "Sans";
size = 11;
};
};
}