mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 22:55:09 +00:00
15 lines
248 B
Nix
15 lines
248 B
Nix
{lib, ...}: let
|
|
inherit (lib.types) enum;
|
|
inherit (lib.options) mkOption;
|
|
in {
|
|
options.olympus.device.type = mkOption {
|
|
type = enum [
|
|
"laptop"
|
|
"desktop"
|
|
"server"
|
|
"hybrid"
|
|
"vm"
|
|
];
|
|
default = "";
|
|
};
|
|
}
|