- Set Mod4 as the mod key and Alacritty as the termcmd. - Add a patch from suckless.org to hide any vacant tags. - https://dwm.suckless.org/patches/hide_vacant_tags
28 lines
377 B
Nix
28 lines
377 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services = {
|
|
dwm-status = {
|
|
enable = true;
|
|
|
|
order = [
|
|
"audio"
|
|
"backlight"
|
|
"battery"
|
|
"cpu_load"
|
|
"network"
|
|
"time"
|
|
];
|
|
};
|
|
|
|
xserver.windowManager.dwm.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dmenu
|
|
dmenu-bluetooth
|
|
networkmanager_dmenu
|
|
st
|
|
];
|
|
}
|