From 17e7657f2384b75b5323190a3abd903b3b23d33d Mon Sep 17 00:00:00 2001 From: kat witch Date: Wed, 24 Mar 2021 22:51:28 +0000 Subject: [PATCH] Network WIP Redo --- hosts/yule/nixos/default.nix | 1 + profiles/gui/nixos/dns.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/yule/nixos/default.nix b/hosts/yule/nixos/default.nix index 9c0ee4a3..614455bd 100644 --- a/hosts/yule/nixos/default.nix +++ b/hosts/yule/nixos/default.nix @@ -17,6 +17,7 @@ networking.useDHCP = false; networking.interfaces.enp1s0.useDHCP = true; networking.interfaces.wlp2s0.useDHCP = true; + networking.networkmanager.enable = true; system.stateVersion = "20.09"; } diff --git a/profiles/gui/nixos/dns.nix b/profiles/gui/nixos/dns.nix index b4870bbe..698aa9bd 100644 --- a/profiles/gui/nixos/dns.nix +++ b/profiles/gui/nixos/dns.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, ... }: { config = lib.mkIf config.deploy.profile.gui { networking = { - networkmanager.enable = true; +# networkmanager.enable = true; resolvconf.useLocalResolver = true; networkmanager.dns = "none"; };