dwm: Add patch to hide unused tags

This commit is contained in:
Donovan Glover 2024-08-22 10:55:08 -04:00
parent dedb462a48
commit a8735d7ba1
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -106,7 +106,20 @@ in
services = {
xserver = {
displayManager.startx.enable = true;
windowManager.dwm.enable = true;
windowManager.dwm = {
enable = true;
package = pkgs.dwm.overrideAttrs (oldAttrs: {
patches = oldAttrs.patches ++ [
(pkgs.fetchpatch {
url = "https://dwm.suckless.org/patches/hide_vacant_tags/dwm-hide_vacant_tags-6.4.diff";
hash = "sha256-GIbRW0Inwbp99rsKLfIDGvPwZ3pqihROMBp5vFlHx5Q=";
})
];
});
};
};
libinput = {