summaryrefslogtreecommitdiff
path: root/hosts/common/options.nix
blob: 8d4bf5be6a8e09b3620fa4955d4a0875a2a537ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{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";
		};
	};
}