summaryrefslogtreecommitdiff
path: root/hyprutils.nix
diff options
context:
space:
mode:
authorsss <sss@dark-alexandr.net>2025-07-01 02:03:23 +0300
committersss <sss@dark-alexandr.net>2025-07-01 02:03:23 +0300
commit188f69443c0873970d41217b52e11c46d584c06d (patch)
treeeab9f51137f212c7bfe7e512490748dae371b698 /hyprutils.nix
nix common overlays initial commit
Diffstat (limited to 'hyprutils.nix')
-rw-r--r--hyprutils.nix13
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";
+ };
+ });
+}