mirror of
https://github.com/virtcode/hypr-dynamic-cursors
synced 2025-09-19 16:13:21 +02:00
26 lines
682 B
Nix
26 lines
682 B
Nix
{
|
|
description = "A plugin to make your hyprland cursor more realistic, also adds shake to find";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
...
|
|
} @ inputs: let
|
|
systems = ["x86_64-linux"];
|
|
forAllSystems = nixpkgs.lib.genAttrs systems;
|
|
packagesForEach = nixpkgs.legacyPackages;
|
|
in {
|
|
packages = forAllSystems (system: rec {
|
|
default = hypr-dynamic-cursors;
|
|
hypr-dynamic-cursors = packagesForEach.${system}.callPackage ./nix/package.nix {
|
|
inherit inputs;
|
|
pkgs = packagesForEach.${system};
|
|
};
|
|
});
|
|
};
|
|
}
|