This commit is contained in:
Nathan McCarty 2023-07-03 20:26:22 -04:00
parent ed07847d4c
commit 12c5f518ec
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
2 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ in {
# Configure networking
networking = {
domain = "mccarty.io";
useDHCP = true;
interfaces.enp6s0.useDHCP = true;
nat.externalInterface = "enp6s0";
# Open ports for soulseek and weylus

View File

@ -34,4 +34,5 @@ in {
[ "f /dev/shm/looking-glass 0660 nathan qemu-libvirtd -" ];
# Setup bridge
networking.bridges = { "qemu-br0" = { interfaces = [ "enp6s0" ]; }; };
networking.interfaces."qemu-br0".useDHCP = true;
}