Levitation installation tweaks

This commit is contained in:
Nathan McCarty 2023-07-02 21:36:02 -04:00
parent 2f483a214a
commit b52dfd7f81
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
2 changed files with 3 additions and 4 deletions

View File

@ -71,9 +71,8 @@ in {
# Configure networking # Configure networking
networking = { networking = {
domain = "mccarty.io"; domain = "mccarty.io";
useDHCP = false; useDHCP = true;
interfaces.enp6s0.useDHCP = true; nat.externalInterface = "enp5s0";
nat.externalInterface = "enp6s0";
# Open ports for soulseek and weylus # Open ports for soulseek and weylus
firewall = { firewall = {
allowedTCPPorts = [ 61377 1701 9001 ]; allowedTCPPorts = [ 61377 1701 9001 ];

View File

@ -23,7 +23,7 @@ in with lib; {
}; };
efi = { efi = {
efiSysMountPoint = "/boot/"; efiSysMountPoint = "/boot/";
canTouchEfiVariables = false; canTouchEfiVariables = true;
}; };
}; };
}) })