switch wifi manager
This commit is contained in:
parent
78d2189d89
commit
0ac4268325
2 changed files with 6 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib) mkEnableOption mkIf;
|
inherit (lib) mkEnableOption mkIf;
|
||||||
|
|
@ -13,6 +14,10 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
wpa_supplicant_gui
|
||||||
|
];
|
||||||
|
|
||||||
networking.wireless = {
|
networking.wireless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userControlled.enable = true;
|
userControlled.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ in {
|
||||||
|
|
||||||
tooltip-format = " {bandwidthDownBits} , {bandwidthDownBits} ";
|
tooltip-format = " {bandwidthDownBits} , {bandwidthDownBits} ";
|
||||||
tooltip-format-wifi = "{essid}: {bandwidthDownBits} , {bandwidthDownBits} ";
|
tooltip-format-wifi = "{essid}: {bandwidthDownBits} , {bandwidthDownBits} ";
|
||||||
on-click = "nm-applet";
|
on-click = "wpa_gui";
|
||||||
};
|
};
|
||||||
|
|
||||||
"battery" = {
|
"battery" = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue