12 lines
181 B
Nix
12 lines
181 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
networking.hostName = "nat64";
|
|
|
|
imports = [
|
|
../base.nix
|
|
../services/nat64.nix
|
|
];
|
|
|
|
# HARDWARE SPECIFIC
|
|
services.qemuGuest.enable = true;
|
|
}
|