nixos-config/lib/instance.nix
2021-02-25 20:45:50 +00:00

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).
'';
};
};
}