nixos-config/machine.nix

8 lines
177 B
Nix
Raw Normal View History

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