21 lines
358 B
Nix
21 lines
358 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./filesystems
|
|
./hardware
|
|
./modules
|
|
../../modules/system
|
|
];
|
|
|
|
system.wireless.enable = false;
|
|
|
|
system.wireguard.client.enable = true;
|
|
networking.wireguard.interfaces.wgc.ips = [ "10.100.0.21/24" ];
|
|
|
|
boot.binfmt.emulatedSystems = [ "x86_64-linux" ];
|
|
|
|
networking.hostName = "extern";
|
|
}
|