diff options
Diffstat (limited to 'hyprutils.nix')
-rw-r--r-- | hyprutils.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hyprutils.nix b/hyprutils.nix new file mode 100644 index 0000000..1cd2156 --- /dev/null +++ b/hyprutils.nix @@ -0,0 +1,13 @@ +{ inputs }: +self: super: { + hyprutils = + with super; + (hyprutils.override { }).overrideAttrs (old: rec { + version = "git"; + src = fetchGit { + url = "https://github.com/hyprwm/hyprutils"; + ref = "main"; +# rev = "2cd5e4fcd5a77f5c7ebc3f6afac4a86336c31281"; + }; + }); +} |