ooknet/system/modules/device/function/default.nix

13 lines
267 B
Nix

{ lib, ... }:
let
inherit (lib) types mkOption;
in
{
options.systemModules.device.function = mkOption {
type = with types; listOf (enum ["workstation" "media server" "gaming"]);
default = [];
description = "Primary function/s of the device";
};
}