From c668e309cd7a9ce649ae1d4e14aff466af0c6bfb Mon Sep 17 00:00:00 2001 From: Sebastian Moser Date: Fri, 17 May 2024 12:47:49 +0200 Subject: [PATCH] added iio-hyprland to nur --- nur.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nur.nix b/nur.nix index f3894dc..226f9c1 100644 --- a/nur.nix +++ b/nur.nix @@ -2,6 +2,16 @@ # Reminder for myself: Any package here should not import , but use the pkgs { pkgs ? import { } }: { + cbm = pkgs.callPackage ./mods/cbm.nix {}; + mac-telnet = pkgs.callPackage ./mods/mac-telnet.nix {}; + + iio-hyprland = let + repo = pkgs.fetchFromGitHub { + owner = "yassineibr"; + repo = "iio-hyprland"; + rev = "nix-support"; + hash = "sha256-xFc8J8tlw6i+FbTC05nrlvQIXRmguFzDqh+SQOR54TE="; + }; in pkgs.callPackage "${repo}/default.nix" {}; }