From 6d8f37a2848bbb7e5290c245662c1c791f164370 Mon Sep 17 00:00:00 2001 From: Jake Ginesin Date: Thu, 22 May 2025 02:01:29 -0400 Subject: [PATCH] 400 current 2025-05-22 02:00:56 25.05.20250424.f771eb4 6.12.24 * --- hosts/rq/configuration.nix | 1 - system/networking/default.nix | 17 ++++++++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/hosts/rq/configuration.nix b/hosts/rq/configuration.nix index a1b9091..ef41cfa 100644 --- a/hosts/rq/configuration.nix +++ b/hosts/rq/configuration.nix @@ -4,7 +4,6 @@ lib, ... }: { - # import system, hardware config, and home manager imports = [ ./hardware-configuration.nix ../../system/system.nix diff --git a/system/networking/default.nix b/system/networking/default.nix index 001885b..41c1628 100644 --- a/system/networking/default.nix +++ b/system/networking/default.nix @@ -7,10 +7,17 @@ # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - networking.interfaces = { - enp0s31f6 = {}; - wlp4s0 = {}; - }; + networking = { + hosts = { + "127.0.0.1" = ["localhost"]; + }; - networking.networkmanager.enable = true; + networkmanager.enable = true; + + # interfaces = { + # enp0s31f6 = {}; + # wlp4s0 = {}; + # }; + usePredictableInterfaceNames = true; + }; }