Hyprcursor maybe?

This commit is contained in:
Patrick Menking 2024-09-17 17:37:58 -04:00
parent e05ea6d6f7
commit 0ca262d1e3

View file

@ -8,12 +8,14 @@
portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
};
config.environment.systemPackages = lib.mkIf config.hypr.enable with pkgs;
[
hyprcursor
]
config.environment.sessionVariables = lib.mkIf config.hypr.enable {
NIXOS_OZONE_WL = "1";
config.environment = lib.mkIf config.hypr.enable {
sessionVariables = {
NIXOS_OZONE_WL = "1";
};
systemPackages = with pkgs;
[
hyprcursor
]
};
}