9 lines
241 B
Nix
9 lines
241 B
Nix
{nixpkgs, ...}: {
|
|
imports = [
|
|
"${nixpkgs}/nixos/modules/installer/netboot/netboot-base.nix"
|
|
];
|
|
networking.wireguard.interfaces."wg0".ips = [
|
|
"fd0d:a262:1fa6:e621:6ec2:1e4e:ce7f:d2af/64"
|
|
];
|
|
networking.hostId = "8425e349";
|
|
}
|