nixos-config/hosts/vm-infra/configuration.nix
2025-11-07 22:04:13 +01:00

24 lines
299 B
Nix

{
inputs,
...
}:
{
# State version
system.stateVersion = "25.05";
# Machine hostname
networking.hostName = "vm-infra";
# Enabled modules
modules = {
profiles.vm.enable = true;
};
# Setup JOOL NAT64
networking.jool = {
enable = true;
nat64.default = { };
};
}