From bdcd19eff5d2b9f596934bfd900cc8fdcd54489c Mon Sep 17 00:00:00 2001 From: Rob Sears Date: Fri, 9 Aug 2024 14:42:42 -0500 Subject: [PATCH] `package` reference was removed in 03d57d7 (#333504) --- nixos/modules/services/networking/wpa_supplicant.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/wpa_supplicant.nix b/nixos/modules/services/networking/wpa_supplicant.nix index 4ea68d33416c..b068f2227310 100644 --- a/nixos/modules/services/networking/wpa_supplicant.nix +++ b/nixos/modules/services/networking/wpa_supplicant.nix @@ -517,8 +517,8 @@ in { hardware.wirelessRegulatoryDatabase = true; - environment.systemPackages = [ package ]; - services.dbus.packages = optional cfg.dbusControlled package; + environment.systemPackages = [ pkgs.wpa_supplicant ]; + services.dbus.packages = optional cfg.dbusControlled pkgs.wpa_supplicant; systemd.services = if cfg.interfaces == []