Files
nixos/modules/home/theme.nix
T

19 lines
347 B
Nix

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