diff options
author | Mihai Fufezan <[email protected]> | 2022-11-13 21:32:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-13 19:32:15 +0000 |
commit | 1a14841a75b2c387b9f67b7f7c40e0b5d3e1f86b (patch) | |
tree | 5068c84b5f6d646a18773f637dbdc8b1943c171f /flake.nix | |
parent | a7ed3a5e4718c5c3a84306bb190a3272e2bdecda (diff) | |
download | Hyprland-1a14841a75b2c387b9f67b7f7c40e0b5d3e1f86b.tar.gz Hyprland-1a14841a75b2c387b9f67b7f7c40e0b5d3e1f86b.zip |
Nix: add hwdata overlay (#1010)
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -24,13 +24,7 @@ pkgsFor = genSystems (system: import nixpkgs { inherit system; overlays = [(_: prev: { - wayland-protocols = prev.wayland-protocols.overrideAttrs (old: rec { - version = "1.27"; - src = prev.fetchurl { - url = "https://gitlab.freedesktop.org/wayland/${old.pname}/-/releases/${version}/downloads/${old.pname}-${version}.tar.xz"; - hash = "sha256-kEbxCkJdTioAlloDrPtrP7V1pWUDrHLCuGghxpZTN1w="; - }; - }); + hwdata = prev.callPackage ./nix/hwdata.nix {}; })]; }); |