nixos-config/lib/instance.nix

13 lines
208 B
Nix

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