14 lines
218 B
Nix
14 lines
218 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
{
|
|
options.instance = {
|
|
hostname = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
Hostname of this specific host (without domain).
|
|
'';
|
|
};
|
|
};
|
|
}
|