2021-02-23 12:58:29 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
2021-02-25 12:45:50 -08:00
|
|
|
with lib;
|
2021-02-23 12:58:29 -08:00
|
|
|
{
|
2021-09-30 08:40:47 -07:00
|
|
|
options.instance = with types; {
|
2021-02-23 12:58:29 -08:00
|
|
|
hostname = mkOption {
|
2021-09-30 08:40:47 -07:00
|
|
|
type = str;
|
|
|
|
description = "Hostname of this specific host (without domain).";
|
|
|
|
};
|
|
|
|
|
|
|
|
build-timestamp = mkOption {
|
|
|
|
type = int;
|
|
|
|
description = "Timestamp associated with the build. Used for e.g. DNS serials.";
|
2021-02-23 12:58:29 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|