14 lines
226 B
Nix
14 lines
226 B
Nix
{ lib, ... }:
|
|
with lib; {
|
|
options.system = {
|
|
desktop.enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
};
|
|
server.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
};
|
|
};
|
|
}
|