13 lines
120 B
Nix

{
lib,
...
}:
let
inherit (lib) types mkOption;
in
{
options.hostName = mkOption {
type = types.str;
};
}