nixos-config/hosts/vm-infra/configuration.nix

24 lines
299 B
Nix
Raw Normal View History

2025-11-03 13:45:59 +01:00
{
2025-11-07 21:11:35 +01:00
inputs,
2025-11-03 13:45:59 +01:00
...
}:
{
# State version
system.stateVersion = "25.05";
# Machine hostname
networking.hostName = "vm-infra";
# Enabled modules
modules = {
profiles.vm.enable = true;
};
2025-11-07 21:59:53 +01:00
# Setup JOOL NAT64
networking.jool = {
2025-11-03 13:45:59 +01:00
enable = true;
2025-11-07 21:59:53 +01:00
nat64.default = { };
2025-11-03 13:45:59 +01:00
};
}