hypr-dynamic-cursors/flake.nix
2024-10-24 22:06:40 +02:00

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};
};
});
};
}