nixos-config/lib/instance.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).
'';
};
};
}