nixos-config/lib/instance.nix

14 lines
218 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2021-02-25 12:45:50 -08:00
with lib;
{
options.instance = {
hostname = mkOption {
type = types.str;
description = ''
Hostname of this specific host (without domain).
'';
};
};
}