aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2022-11-13 21:32:15 +0200
committerGitHub <[email protected]>2022-11-13 19:32:15 +0000
commit1a14841a75b2c387b9f67b7f7c40e0b5d3e1f86b (patch)
tree5068c84b5f6d646a18773f637dbdc8b1943c171f /flake.nix
parenta7ed3a5e4718c5c3a84306bb190a3272e2bdecda (diff)
downloadHyprland-1a14841a75b2c387b9f67b7f7c40e0b5d3e1f86b.tar.gz
Hyprland-1a14841a75b2c387b9f67b7f7c40e0b5d3e1f86b.zip
Nix: add hwdata overlay (#1010)
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 14f47a8c..111a7743 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 {};
})];
});