wpa_supplicant: re-enable
This commit is contained in:
@@ -132,6 +132,7 @@
|
|||||||
./wine.nix
|
./wine.nix
|
||||||
./wireplumber.nix
|
./wireplumber.nix
|
||||||
./wireshark.nix
|
./wireshark.nix
|
||||||
|
./wpa_supplicant.nix
|
||||||
./wvkbd.nix
|
./wvkbd.nix
|
||||||
./xarchiver.nix
|
./xarchiver.nix
|
||||||
./xdg-desktop-portal.nix
|
./xdg-desktop-portal.nix
|
||||||
|
@@ -10,6 +10,7 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
sane.programs.networkmanager = {
|
sane.programs.networkmanager = {
|
||||||
|
suggestedPrograms = [ "wpa_supplicant" ];
|
||||||
enableFor.system = lib.mkIf (builtins.any (en: en) (builtins.attrValues cfg.enableFor.user)) true;
|
enableFor.system = lib.mkIf (builtins.any (en: en) (builtins.attrValues cfg.enableFor.user)) true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
8
hosts/common/programs/wpa_supplicant.nix
Normal file
8
hosts/common/programs/wpa_supplicant.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.sane.programs.wpa_supplicant;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
sane.programs.wpa_supplicant = {};
|
||||||
|
services.udev.packages = lib.mkIf cfg.enabled [ cfg.package ];
|
||||||
|
}
|
Reference in New Issue
Block a user