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