Kiana Sheibani
b9acd932e9
There's no real need to be so restrictive about what kinds of machine names there can be.
8 lines
143 B
Nix
8 lines
143 B
Nix
{ lib, ... }:
|
|
{
|
|
options.machine = lib.mkOption {
|
|
description = "The machine hostname to configure for";
|
|
type = lib.types.str;
|
|
};
|
|
}
|