diff --git a/machine-confs/nat64.nix b/machine-confs/nat64.nix new file mode 100644 index 0000000..6d0183c --- /dev/null +++ b/machine-confs/nat64.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: +{ + networking.hostName = "nat64"; + + imports = [ + ../base.nix + ../services/nat64.nix + ]; + + # HARDWARE SPECIFIC + services.qemuGuest.enable = true; +} diff --git a/services/nat64.nix b/services/nat64.nix new file mode 100644 index 0000000..a62f39c --- /dev/null +++ b/services/nat64.nix @@ -0,0 +1,6 @@ +{ config, pkgs, ... }: +{ + networking.jool = { + enable = true; + }; +}