mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-02 02:49:44 +01:00
dwm: Add patch to hide unused tags
This commit is contained in:
parent
dedb462a48
commit
a8735d7ba1
@ -106,7 +106,20 @@ in
|
|||||||
services = {
|
services = {
|
||||||
xserver = {
|
xserver = {
|
||||||
displayManager.startx.enable = true;
|
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 = {
|
libinput = {
|
||||||
|
Loading…
Reference in New Issue
Block a user