xserver.nix is now desktop.nix; WM's can now be added/removed through machine options. Added sway and some fonts.

This commit is contained in:
Kevin Baensch 2019-05-04 13:47:21 +02:00
parent 4386bc197d
commit 6c744f089e
12 changed files with 337 additions and 38 deletions

View file

@ -73,5 +73,12 @@ with lib;
'';
};
};
desktop.wms = mkOption {
type = types.listOf types.string;
default = [];
description = ''
The list of wms to be enabled.
'';
};
};
}