NixServerConfig/module/hostname.nix
Wateir d4d7073344 Add of vaulwarden
Some refractoring and start of a more versatil config
2025-12-17 23:11:49 +01:00

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";
};
}