More dwm build dependencies and build from local src files (still not working

This commit is contained in:
Sravan Balaji
2024-03-28 08:17:33 -04:00
parent 11f3c0ca90
commit a69d92e18b
3 changed files with 21 additions and 17 deletions

View File

@@ -11,21 +11,25 @@
overlays = [
(self: super: {
dwm = super.dwm.overrideAttrs (oldattrs: {
src = fetchGit {
url = "https://gitea.sravanbalaji.com/sravan/dwm-flexipatch.git";
rev = "23b55eaf9cd9c08d4c14f7957675ae056e358e32";
};
src = /home/sravan/.config/dwm-flexipatch;
buildInputs = with pkgs; [
xorg.libX11
xorg.libXinerama
xorg.libXft
xorg.libxcb
xorg.xcbutil
yajl
jsoncpp
];
});
})
];
};
environment.systemPackages = with pkgs; [
polybar
];
services.xserver.windowManager.dwm.enable = true;
services.xserver.displayManager.defaultSession = "none+dwm";
}