mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-22 05:38:36 +01:00
dwm: Add patch to hide unused tags
This commit is contained in:
parent
dedb462a48
commit
a8735d7ba1
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user