diff --git a/modules/system.nix b/modules/system.nix index b5ead15..c658cec 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -4,5 +4,6 @@ ../system/astal/default.nix ../system/hyprland/default.nix ../system/fonts/default.nix + ../system/cursor/default.nix ]; } diff --git a/system/cursor/default.nix b/system/cursor/default.nix new file mode 100644 index 0000000..19fae28 --- /dev/null +++ b/system/cursor/default.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + hyprcursor + bibata-cursors + ]; +}