infrastructure/nixos/hosts/olympus/bastion/containers/default.nix
Vivian f409d9849c
Some checks failed
Lint / lint (push) Failing after 2m15s
Plex Update / update (push) Successful in 2m33s
disable containers for now
2024-01-01 14:39:53 +01:00

26 lines
451 B
Nix

{ config, lib, ... }:
let
hostAddress = "10.42.99.1";
hostAddress6 = "fc00::1";
in {
# TODO: Loop over subdirs, create nixos container for each
networking.nat = {
enable = true;
internalInterfaces = [ "ve-+" ];
externalInterface = "ens18";
# Lazy IPv6 connectivity for the container
enableIPv6 = true;
forwardPorts = [
];
};
# Containers network is
# * 10.42.99.0/24
# * fc00:x
containers = {
};
}