beherbergung/deployment/hosts/beherbergung-lifeline/configuration.nix

16 lines
289 B
Nix

{ config, pkgs, ... }:
{
imports = [
../../modules/hetzner.nix
];
system.stateVersion = "21.11";
networking = {
hostName = "beherbergung-lifeline";
interfaces.ens3 = {
ipv6.addresses = [ { address = "2a01:4f8:c0c:cf13::1"; prefixLength = 64; } ];
};
};
}