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

13 lines
277 B
Nix

{ lib, ... }:
let
inherit (lib) types mkOption;
in
{
options.systemModules.meta.device.type = mkOption {
type = types.enum ["desktop" "server" "phone" "vm"];
default = "desktop";
description = "Meta option to describe what type of device the host is";
};
}