blob: cdbf3a3e48198a6887aab785433dd9f51e693f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{pkgs, lib, config, ...}: {
options.addons.desktop.x11.enable = lib.mkEnableOption "Enabled if X11 is needed for this machine";
config = lib.mkIf config.addons.desktop.x11.enable {
services.xserver = {
enable = true;
excludePackages = with pkgs; [
xterm
];
};
};
}
|