Files
nixos/modules/home/theme.nix
T
2026-05-07 11:30:27 -05:00

19 lines
335 B
Nix

{pkgs, ...}: {
imports = [
../../apps/matugen
];
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 24;
};
wayland.windowManager.hyprland.settings = {
env = [
"HYPRCURSOR_THEME,Bibata-Modern-Ice"
"HYPRCURSOR_SIZE,24"
];
};
}