mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
hyprland: set cursor and gtk themes to Vanilla-DMZ-AA and breeze
This commit is contained in:
parent
6354ed37f3
commit
d4ddbfb4e3
|
@ -14,16 +14,6 @@
|
||||||
udiskie
|
udiskie
|
||||||
];
|
];
|
||||||
|
|
||||||
services.mako = {
|
|
||||||
enable = true;
|
|
||||||
font = "DroidSansM Nerd Font Mono 11";
|
|
||||||
backgroundColor = "#00000080";
|
|
||||||
textColor = "#FFFFFF";
|
|
||||||
borderRadius = 10;
|
|
||||||
defaultTimeout = 10000;
|
|
||||||
padding = "15";
|
|
||||||
};
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = builtins.readFile ./hyprland.conf;
|
extraConfig = builtins.readFile ./hyprland.conf;
|
||||||
|
@ -31,4 +21,28 @@
|
||||||
|
|
||||||
xdg.configFile."hypr/hypridle.conf".source = ./hypridle.conf;
|
xdg.configFile."hypr/hypridle.conf".source = ./hypridle.conf;
|
||||||
xdg.configFile."hypr/hyprlock.conf".source = ./hyprlock.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;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue