Add minimal NAT64 conf
This commit is contained in:
parent
b86c4db014
commit
d13e4181b6
2 changed files with 18 additions and 0 deletions
12
machine-confs/nat64.nix
Normal file
12
machine-confs/nat64.nix
Normal 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
6
services/nat64.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
networking.jool = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue