11 lines
230 B
Nix
11 lines
230 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.HostName = mkOption {
|
|
type = types.str;
|
|
default = "${config.networking.hostName}.ssh.wateir.fr";
|
|
description = "Global hostname with domain for all services";
|
|
};
|
|
}
|