blob: 71883e03c45de376beeb52486ce32d18c42c59d5 (
plain) (
blame)
1
2
3
4
5
6
7
|
{lib, ...}: {
options.role.sils = lib.mkOption {
type = lib.types.nullOr (lib.types.enum ["laptop" "undefined" "vm"]);
default = null;
description = "The role which should be applied to your configuration.";
};
}
|