diff --git a/flake.nix b/flake.nix index 1c92afe0..fcb57906 100644 --- a/flake.nix +++ b/flake.nix @@ -28,7 +28,7 @@ ); # overlays here - overlays = import ./overlays { inherit inputs outputs; }; + overlays = import ./overlays { inherit inputs; }; # modules :D nixosModules = import ./modules; diff --git a/overlays/default.nix b/overlays/default.nix index 5097e2d3..1279fe60 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -21,21 +21,9 @@ }; dwm = prev.dwm.overrideAttrs (old: { src = ../config/dwm; - nativeBuildInputs = with pkgs; [ - xorg.libX11.dev - xorg.libXft - imlib2 - xorg.libXinerama - ]; }); dwmblocks = prev.dwm.overrideAttrs (old: { src = ../config/dwmblocks; - nativeBuildInputs = with pkgs; [ - xorg.libX11.dev - xorg.libXft - imlib2 - xorg.libXinerama - ]; }); };