switch wifi manager

This commit is contained in:
KoenDR06 2025-09-28 23:34:29 +02:00
parent 78d2189d89
commit 0ac4268325
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf;
@ -13,6 +14,10 @@ in {
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
wpa_supplicant_gui
];
networking.wireless = {
enable = true;
userControlled.enable = true;