2022-12-11 12:19:04 +01:00
|
|
|
{ pkgs, baseDomain, ... }: {
|
2023-07-28 10:31:36 +02:00
|
|
|
cj.deployment.environment = "prod";
|
2022-12-11 12:19:04 +01:00
|
|
|
|
2022-11-27 23:11:34 +01:00
|
|
|
imports = [
|
|
|
|
./hardware-config.nix
|
2022-12-11 12:19:04 +01:00
|
|
|
../../services/mumble.nix
|
|
|
|
../../services/website.nix
|
2022-12-24 01:27:40 +01:00
|
|
|
../../services/vaultwarden.nix
|
2022-12-30 14:19:14 +01:00
|
|
|
../../services/dokuwiki.nix
|
2023-01-06 18:29:58 +01:00
|
|
|
../../services/freescout.nix
|
2022-11-27 23:11:34 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
networking.hostName = "shirley";
|
|
|
|
# Fallback / for the monitoring v(x)lan
|
|
|
|
networking.useDHCP = true;
|
|
|
|
|
|
|
|
# We need to configure IPv6 statically, and if we start with that we can just also do it for IPv4
|
|
|
|
networking.interfaces.ens3.useDHCP = false;
|
|
|
|
networking.interfaces.ens3.ipv4.addresses = [ { address = "94.130.107.245"; prefixLength = 32; } ];
|
|
|
|
networking.interfaces.ens3.ipv6.addresses = [ { address = "2a01:4f8:c0c:83eb::1"; prefixLength = 64; } ];
|
|
|
|
networking.defaultGateway = { address = "172.31.1.1"; interface = "ens3"; };
|
|
|
|
networking.defaultGateway6 = { address = "fe80::1"; interface = "ens3"; };
|
|
|
|
networking.nameservers = [ "213.133.98.98" "213.133.99.99" "213.133.100.100" ];
|
|
|
|
}
|