From b52dfd7f81ec2f25ccd6dbfaea26c514c5259cd6 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 2 Jul 2023 21:36:02 -0400 Subject: [PATCH] Levitation installation tweaks --- machines/levitation/configuration.nix | 5 ++--- modules/linux/desktop.nix | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/machines/levitation/configuration.nix b/machines/levitation/configuration.nix index aed8d92..f1f67c3 100644 --- a/machines/levitation/configuration.nix +++ b/machines/levitation/configuration.nix @@ -71,9 +71,8 @@ in { # Configure networking networking = { domain = "mccarty.io"; - useDHCP = false; - interfaces.enp6s0.useDHCP = true; - nat.externalInterface = "enp6s0"; + useDHCP = true; + nat.externalInterface = "enp5s0"; # Open ports for soulseek and weylus firewall = { allowedTCPPorts = [ 61377 1701 9001 ]; diff --git a/modules/linux/desktop.nix b/modules/linux/desktop.nix index b44d18d..fcffb1b 100644 --- a/modules/linux/desktop.nix +++ b/modules/linux/desktop.nix @@ -23,7 +23,7 @@ in with lib; { }; efi = { efiSysMountPoint = "/boot/"; - canTouchEfiVariables = false; + canTouchEfiVariables = true; }; }; })