blob: c36d4e288b846d3d50b1837974f7dcbc4ca171cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{lib, ...}: {
options.sys = with lib; {
gui.enable = mkOption {
type = types.bool;
default = false;
description = "install gui-related packages";
};
wsl.enable = mkOption {
type = types.bool;
default = false;
description = "signifies that the flake is being installed in wsl";
};
desktop = mkOption {
type = types.str;
default = "";
description = "set the desktop";
};
};
}
|