8 lines
177 B
Nix
8 lines
177 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options.machine = lib.mkOption {
|
||
|
description = "The machine hostname to configure for";
|
||
|
type = lib.types.enum [ "earth" "fire" "air" "water" ];
|
||
|
};
|
||
|
}
|