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
|
|
|
{
|
|
|
|
options.instance = {
|
|
|
|
hostname = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
Hostname of this specific host (without domain).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|