From 4e6e8448c337a414719eed07b99ae2862aa71a3e Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Fri, 6 Dec 2024 10:24:54 +0200 Subject: [PATCH] Nix: add hyprland-qtutils to PATH --- flake.lock | 27 +++++++++++++++++++++++++++ flake.nix | 9 +++++++-- nix/default.nix | 2 ++ nix/overlays.nix | 1 + 4 files changed, 37 insertions(+), 2 deletions(-) diff --git a/flake.lock b/flake.lock index 23bd37a91be..d2e246d6166 100644 --- a/flake.lock +++ b/flake.lock @@ -141,6 +141,32 @@ "type": "github" } }, + "hyprland-qtutils": { + "inputs": { + "hyprutils": [ + "hyprutils" + ], + "nixpkgs": [ + "nixpkgs" + ], + "systems": [ + "systems" + ] + }, + "locked": { + "lastModified": 1733472316, + "narHash": "sha256-PvXiFLIExJEJj+goLbIuXLTN5CSDSAUsAfiYSdbbWg0=", + "owner": "hyprwm", + "repo": "hyprland-qtutils", + "rev": "969427419276c7ee170301ef1ebe0f68eb6eb2e2", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprland-qtutils", + "type": "github" + } + }, "hyprlang": { "inputs": { "hyprutils": [ @@ -274,6 +300,7 @@ "hyprcursor": "hyprcursor", "hyprgraphics": "hyprgraphics", "hyprland-protocols": "hyprland-protocols", + "hyprland-qtutils": "hyprland-qtutils", "hyprlang": "hyprlang", "hyprutils": "hyprutils", "hyprwayland-scanner": "hyprwayland-scanner", diff --git a/flake.nix b/flake.nix index f26f1c3114d..821a5f90f0d 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,13 @@ inputs.systems.follows = "systems"; }; + hyprland-qtutils = { + url = "github:hyprwm/hyprland-qtutils"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.systems.follows = "systems"; + inputs.hyprutils.follows = "hyprutils"; + }; + hyprlang = { url = "github:hyprwm/hyprlang"; inputs.nixpkgs.follows = "nixpkgs"; @@ -123,13 +130,11 @@ inherit (pkgsFor.${system}) # hyprland-packages - hyprland hyprland-debug hyprland-legacy-renderer hyprland-unwrapped # hyprland-extras - xdg-desktop-portal-hyprland ; hyprland-cross = (pkgsCrossFor.${system} "aarch64-linux").hyprland; diff --git a/nix/default.nix b/nix/default.nix index dbe4879e130..7c9fd04c307 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -14,6 +14,7 @@ hyprcursor, hyprgraphics, hyprland-protocols, + hyprland-qtutils, hyprlang, hyprutils, hyprwayland-scanner, @@ -167,6 +168,7 @@ in wrapProgram $out/bin/Hyprland \ --suffix PATH : ${makeBinPath [ binutils + hyprland-qtutils pciutils pkgconf ]} diff --git a/nix/overlays.nix b/nix/overlays.nix index c2103f31142..b632d0b4da7 100644 --- a/nix/overlays.nix +++ b/nix/overlays.nix @@ -24,6 +24,7 @@ in { inputs.hyprcursor.overlays.default inputs.hyprgraphics.overlays.default inputs.hyprland-protocols.overlays.default + inputs.hyprland-qtutils.overlays.default inputs.hyprlang.overlays.default inputs.hyprutils.overlays.default inputs.hyprwayland-scanner.overlays.default