12 lines
247 B
Nix
12 lines
247 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
xsession = {
|
|
windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtra = true;
|
|
extraPackages = hp: [ hp.dbus hp.monad-logger hp.xmonad-contrib ];
|
|
config = ./config.hs;
|
|
};
|
|
};
|
|
}
|