Add minimal NAT64 conf

This commit is contained in:
Vili Sinervä 2024-09-20 21:15:58 +03:00
parent b86c4db014
commit d13e4181b6
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
2 changed files with 18 additions and 0 deletions

12
machine-confs/nat64.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
networking.hostName = "nat64";
imports = [
../base.nix
../services/nat64.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}

6
services/nat64.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
networking.jool = {
enable = true;
};
}