diff --git a/flake.lock b/flake.lock index 983253e..61d0436 100644 --- a/flake.lock +++ b/flake.lock @@ -2,7 +2,9 @@ "nodes": { "hyprland-qt-support": { "inputs": { - "hyprlang": "hyprlang", + "hyprlang": [ + "hyprlang" + ], "nixpkgs": [ "nixpkgs" ], @@ -28,11 +30,9 @@ "inputs": { "hyprutils": "hyprutils", "nixpkgs": [ - "hyprland-qt-support", "nixpkgs" ], "systems": [ - "hyprland-qt-support", "systems" ] }, @@ -53,12 +53,10 @@ "hyprutils": { "inputs": { "nixpkgs": [ - "hyprland-qt-support", "hyprlang", "nixpkgs" ], "systems": [ - "hyprland-qt-support", "hyprlang", "systems" ] @@ -77,29 +75,6 @@ "type": "github" } }, - "hyprutils_2": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ], - "systems": [ - "systems" - ] - }, - "locked": { - "lastModified": 1737725508, - "narHash": "sha256-jGmcPc6y/prg/4A8KGYqJ27nSPaProCMiFadaxNAKvA=", - "owner": "hyprwm", - "repo": "hyprutils", - "rev": "fb0c2d1de3d1ef7396d19c18ac09e12bd956929e", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprutils", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1737632463, @@ -119,7 +94,11 @@ "root": { "inputs": { "hyprland-qt-support": "hyprland-qt-support", - "hyprutils": "hyprutils_2", + "hyprlang": "hyprlang", + "hyprutils": [ + "hyprlang", + "hyprutils" + ], "nixpkgs": "nixpkgs", "systems": "systems" } diff --git a/flake.nix b/flake.nix index f944bf3..72b5fe2 100644 --- a/flake.nix +++ b/flake.nix @@ -5,14 +5,17 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; systems.url = "github:nix-systems/default-linux"; - hyprutils = { - url = "github:hyprwm/hyprutils"; + hyprlang = { + url = "github:hyprwm/hyprlang"; inputs.nixpkgs.follows = "nixpkgs"; inputs.systems.follows = "systems"; }; + hyprutils.follows = "hyprlang/hyprutils"; + hyprland-qt-support = { url = "github:hyprwm/hyprland-qt-support"; + inputs.hyprlang.follows = "hyprlang"; inputs.nixpkgs.follows = "nixpkgs"; inputs.systems.follows = "systems"; };