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