14 lines
243 B
Nix
14 lines
243 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) mkOption;
|
|
inherit (lib.types) nullOr str;
|
|
in
|
|
{
|
|
options.modules.meta = {
|
|
hostname = mkOption {
|
|
default = null;
|
|
type = nullOr str;
|
|
description = "The system's hostname.";
|
|
};
|
|
};
|
|
}
|