From c5afa53ea5d3f36dce56984969207c228ab91a79 Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 29 Jun 2025 19:12:24 -0400 Subject: [PATCH] Compile fix for networking.nix. --- nodes/hosts/common/system/networking.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/hosts/common/system/networking.nix b/nodes/hosts/common/system/networking.nix index 5764a64..98e8d91 100644 --- a/nodes/hosts/common/system/networking.nix +++ b/nodes/hosts/common/system/networking.nix @@ -1,4 +1,4 @@ -{ config, ...}: { +{ config, lib, ...}: { networking.networkmanager.enable = true; networking.useDHCP = lib.mkDefault true; }