From 8f4df05bde8319708bd4b056551c5c811f188c0a Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Tue, 14 May 2024 20:06:49 +0200 Subject: [PATCH] heliox --- flake.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 623f194..ce4a575 100644 --- a/flake.nix +++ b/flake.nix @@ -5,16 +5,13 @@ url = "github:viperml/nh"; inputs.nixpkgs.follows = "nixpkgs"; }; + heliox-cli.url = "git+https://git.ghoscht.com/heliox/cli?ref=custom-dimming"; }; outputs = { - self, - nixpkgs, nh, + heliox-cli, ... - } @ inputs: let - in { - packages.x86_64-linux.nh = nh.packages.x86_64-linux.nh; - defaultPackage.x86_64-linux = self.packages.x86_64-linux.nh; - hydraJobs."nh" = self.defaultPackage; + } @ inputs: { + hydraJobs.nh = heliox-cli.packages.x86_64-linux.hx; }; }