dotfiles/nix/system/xmonad.nix

13 lines
181 B
Nix
Raw Normal View History

2021-10-05 23:42:21 -07:00
{ config, lib, pkgs, ...}:
{
displayManager = {
defaultSession = "none+xmonad";
};
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
}