nyx/modules/base/options/device.nix

16 lines
248 B
Nix
Raw Permalink Normal View History

2025-01-26 00:36:34 +02:00
{lib, ...}: let
inherit (lib.types) enum;
inherit (lib.options) mkOption;
in {
options.olympus.device.type = mkOption {
type = enum [
"laptop"
"desktop"
"server"
"hybrid"
"vm"
];
default = "";
};
}