aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-02-06 19:25:29 +0100
committerKarel Kočí <cynerd@email.cz>2023-02-06 19:25:29 +0100
commitb06842f6ab607e91b7e5fcce8f76e85d50d5712f (patch)
treead0c3be9c957c8123a99fab43c1250994a189014
parent4057cae9517b121c5ffee8ec6b12ee7ffe8889af (diff)
downloadnixos-personal-b06842f6ab607e91b7e5fcce8f76e85d50d5712f.tar.gz
nixos-personal-b06842f6ab607e91b7e5fcce8f76e85d50d5712f.tar.bz2
nixos-personal-b06842f6ab607e91b7e5fcce8f76e85d50d5712f.zip
nixos/wifi-client: add wpa_supplicant_gui
-rw-r--r--nixos/modules/wifi-client.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/modules/wifi-client.nix b/nixos/modules/wifi-client.nix
index fd0944a..0d7fd48 100644
--- a/nixos/modules/wifi-client.nix
+++ b/nixos/modules/wifi-client.nix
@@ -14,6 +14,9 @@ with lib; {
};
config = mkIf config.cynerd.wifiClient {
+ environment.systemPackages = with pkgs; [
+ wpa_supplicant_gui
+ ];
networking.wireless = {
enable = true;
networks = config.secrets.wifiNetworks;