9 lines
161 B
Nix
9 lines
161 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config.xsession.windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtras = true;
|
|
config = ./config.hs;
|
|
};
|
|
}
|