From adf0ac1ae821652ec80275cfa8eb5d5b5a85ddc7 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Wed, 25 Sep 2024 18:01:39 +0200 Subject: [PATCH] fix(hyprlock): fix scaling issue by using the fixed flake --- flake.lock | 95 +++++++++++++++++++++++++++++++++++++++- flake.nix | 5 +++ modules/nix/overlays.nix | 2 + 3 files changed, 101 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index 09384d5..f1de903 100644 --- a/flake.lock +++ b/flake.lock @@ -85,7 +85,7 @@ }, "flake-utils": { "inputs": { - "systems": "systems_3" + "systems": "systems_4" }, "locked": { "lastModified": 1710146030, @@ -256,6 +256,58 @@ "type": "github" } }, + "hyprlang_2": { + "inputs": { + "hyprutils": [ + "hyprlock", + "hyprutils" + ], + "nixpkgs": [ + "hyprlock", + "nixpkgs" + ], + "systems": [ + "hyprlock", + "systems" + ] + }, + "locked": { + "lastModified": 1721324361, + "narHash": "sha256-BiJKO0IIdnSwHQBSrEJlKlFr753urkLE48wtt0UhNG4=", + "owner": "hyprwm", + "repo": "hyprlang", + "rev": "adbefbf49664a6c2c8bf36b6487fd31e3eb68086", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprlang", + "type": "github" + } + }, + "hyprlock": { + "inputs": { + "hyprlang": "hyprlang_2", + "hyprutils": "hyprutils_2", + "nixpkgs": [ + "nixpkgs" + ], + "systems": "systems_3" + }, + "locked": { + "lastModified": 1727254580, + "narHash": "sha256-JPms9Xhgr2R76vWEGmCvsBAoM0JUd4cQ2zl4pie+XAM=", + "owner": "hyprwm", + "repo": "hyprlock", + "rev": "9ea804788ca5b4852d7e045d7a57f8d413852ca0", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprlock", + "type": "github" + } + }, "hyprutils": { "inputs": { "nixpkgs": [ @@ -281,6 +333,31 @@ "type": "github" } }, + "hyprutils_2": { + "inputs": { + "nixpkgs": [ + "hyprlock", + "nixpkgs" + ], + "systems": [ + "hyprlock", + "systems" + ] + }, + "locked": { + "lastModified": 1721324102, + "narHash": "sha256-WAZ0X6yJW1hFG6otkHBfyJDKRpNP5stsRqdEuHrFRpk=", + "owner": "hyprwm", + "repo": "hyprutils", + "rev": "962582a090bc233c4de9d9897f46794280288989", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "hyprutils", + "type": "github" + } + }, "hyprwayland-scanner": { "inputs": { "nixpkgs": [ @@ -441,6 +518,7 @@ "flake-parts": "flake-parts", "home-manager": "home-manager_2", "hyprland": "hyprland", + "hyprlock": "hyprlock", "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs_2", "nysh": "nysh", @@ -496,6 +574,21 @@ } }, "systems_3": { + "locked": { + "lastModified": 1689347949, + "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", + "owner": "nix-systems", + "repo": "default-linux", + "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default-linux", + "type": "github" + } + }, + "systems_4": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", diff --git a/flake.nix b/flake.nix index 7201fc5..84851e4 100644 --- a/flake.nix +++ b/flake.nix @@ -37,6 +37,11 @@ url = "git+https://github.com/hyprwm/Hyprland?submodules=1&ref=refs/tags/v0.41.2"; inputs.nixpkgs.follows = "nixpkgs"; }; + + hyprlock = { + url = "github:hyprwm/hyprlock"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = diff --git a/modules/nix/overlays.nix b/modules/nix/overlays.nix index e3ed6de..09113a8 100644 --- a/modules/nix/overlays.nix +++ b/modules/nix/overlays.nix @@ -34,6 +34,8 @@ #hyprland = inputs'.hyprland.packages.hyprland; #xdg-desktop-portal-hyprland = inputs'.hyprland.packages.xdg-desktop-portal-hyprland; + + hyprlock = inputs'.hyprlock.packages.hyprlock; }) ]; }