diff --git a/modules/modules/hardware/wireless.nix b/modules/modules/hardware/wireless.nix index 137116b..7e586ca 100644 --- a/modules/modules/hardware/wireless.nix +++ b/modules/modules/hardware/wireless.nix @@ -1,4 +1,4 @@ -{ config, lib, private, ... }: +{ config, lib, private, pkgs, ... }: with lib; with lib.our; let @@ -33,6 +33,7 @@ in userControlled.enable = true; fallbackToWPA2 = mkDefault false; }; + environment.systemPackages = [ pkgs.wpa_supplicant_gui ]; }) ]; } diff --git a/users/infinidoge/config/qtile/config.py b/users/infinidoge/config/qtile/config.py index 7b03887..253d020 100644 --- a/users/infinidoge/config/qtile/config.py +++ b/users/infinidoge/config/qtile/config.py @@ -507,6 +507,7 @@ groups.append( DropDown("calculator", "speedcrunch", x=0.2, y=0.2, width=0.6, height=0.6), DropDown("arandr", "arandr", x=0.2, y=0.1, width=0.6, height=0.4), DropDown("bluetooth", "blueman-manager", x=0.2, y=0.2, width=0.6, height=0.6), + DropDown("wifi", "wpa_gui", x=0.3, y=0.3, width=0.4, height=0.4), ], ) ) @@ -526,6 +527,10 @@ keys.extend( [Keys.SUPER, Keys.ALT], "b", lazy.group["scratchpad"].dropdown_toggle("bluetooth"), ), + Key( + [Keys.SUPER, Keys.ALT], "n", + lazy.group["scratchpad"].dropdown_toggle("wifi"), + ), ] ) # fmt: on