13 lines
133 B
Nix
13 lines
133 B
Nix
|
{lib, ...}:
|
||
|
|
||
|
with lib;
|
||
|
{
|
||
|
options = {
|
||
|
host.role = mkOption {
|
||
|
type = types.enum [
|
||
|
"server"
|
||
|
"workstation"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|