8 lines
114 B
Nix

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