18 lines
363 B
Nix
18 lines
363 B
Nix
{ lib, ... }:
|
|
with lib; {
|
|
options = {
|
|
system = {
|
|
desktop.enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Enable desktop apps and services";
|
|
};
|
|
server.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Enable server services";
|
|
};
|
|
};
|
|
};
|
|
}
|