diff --git a/flake.lock b/flake.lock index eebad2dd..cf742942 100644 --- a/flake.lock +++ b/flake.lock @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1682526928, - "narHash": "sha256-2cKh4O6t1rQ8Ok+v16URynmb0rV7oZPEbXkU0owNLQs=", + "lastModified": 1683014792, + "narHash": "sha256-6Va9iVtmmsw4raBc3QKvQT2KT/NGRWlvUlJj46zN8B8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d6b863fd9b7bb962e6f9fdf292419a775e772891", + "rev": "1a411f23ba299db155a5b45d5e145b85a7aafc42", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3d1f1950..cbabc558 100644 --- a/flake.nix +++ b/flake.nix @@ -39,7 +39,6 @@ overlays = [ self.overlays.hyprland-packages self.overlays.wlroots-hyprland - self.overlays.wayland-latest inputs.hyprland-protocols.overlays.default ]; }); diff --git a/nix/overlays.nix b/nix/overlays.nix index 48eb4b5f..3b8e22b6 100644 --- a/nix/overlays.nix +++ b/nix/overlays.nix @@ -94,15 +94,4 @@ in { }); }; }; - - # Temporary override for latest wayland version. May be useless in the future. - wayland-latest = final: prev: { - wayland = prev.wayland.overrideAttrs (old: rec { - version = "1.22.0"; - src = final.fetchurl { - url = "https://gitlab.freedesktop.org/wayland/wayland/-/releases/${version}/downloads/${old.pname}-${version}.tar.xz"; - hash = "sha256-FUCvHqaYpHHC2OnSiDMsfg/TYMjx0Sk267fny8JCWEI="; - }; - }); - }; }