nixos-config/hosts/vm-infra/configuration.nix
2025-11-07 21:59:53 +01:00

23 lines
274 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;
};
}