12 lines
181 B
Nix
12 lines
181 B
Nix
{ config, lib, pkgs, ...}:
|
|
|
|
{
|
|
displayManager = {
|
|
defaultSession = "none+xmonad";
|
|
};
|
|
|
|
windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtras = true;
|
|
};
|
|
}
|