1
0
Fork 0
nixfiles/hosts/nonat/configuration.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2020-12-07 16:57:50 +01:00
{ config, pkgs, lib, ... }:
{
imports =
[
./hardware-configuration.nix
../../configuration/common
../../configuration/proxmox-vm
2020-12-15 20:22:07 +01:00
../../configuration/router
2020-12-07 16:57:50 +01:00
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/vda";
networking.hostName = "nonat";
networking.useDHCP = false;
2020-12-15 20:22:07 +01:00
# Network
2020-12-07 16:57:50 +01:00
networking.interfaces.ens18.ipv4.addresses = [
{ address = "141.24.46.169"; prefixLength = 24; }
];
networking.interfaces.ens18.ipv6.addresses = [
{ address = "2001:638:904:ffca::6"; prefixLength = 64; }
];
networking.defaultGateway = { address = "141.24.46.1"; interface = "ens18"; };
networking.defaultGateway6 = { address = "2001:638:904:ffca::1"; interface = "ens18"; };
2020-12-07 17:03:56 +01:00
networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ];
2020-12-07 16:57:50 +01:00
networking.interfaces.ens19.ipv4.addresses = [
{ address = "192.168.10.1"; prefixLength = 24; }
];
2020-12-07 16:57:50 +01:00
networking.nat = {
2020-12-17 03:56:06 +01:00
enableIPv6 = true;
2020-12-07 16:57:50 +01:00
enable = true;
externalInterface = "ens18";
internalInterfaces = [ "ens19" ];
};
networking.firewall.allowedUDPPorts = [];
2020-12-15 20:22:07 +01:00
2021-02-24 12:09:44 +01:00
clerie.monitoring = {
enable = true;
id = "103";
pubkey = "BHRfdK+HsoBXQHgLXotMnfPgfRrsVNHdSg19fvS2kg4=";
};
2020-12-07 16:57:50 +01:00
system.stateVersion = "21.03";
}