mirror of
https://github.com/virtcode/hypr-dynamic-cursors
synced 2025-09-19 16:13:21 +02:00
24 lines
676 B
Nix
24 lines
676 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 = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
...
|
|
} @ inputs: let
|
|
forAllSystems = function:
|
|
nixpkgs.lib.genAttrs [
|
|
"x86_64-linux"
|
|
] (system: function nixpkgs.legacyPackages.${system});
|
|
in {
|
|
packages = forAllSystems (pkgs: {
|
|
default = self.packages.${pkgs.system}.hypr-dynamic-cursors;
|
|
hypr-dynamic-cursors = pkgs.callPackage ./nix/package.nix {inherit inputs pkgs;};
|
|
});
|
|
};
|
|
}
|