1: Added network manager applet

This commit is contained in:
uzy lol 2024-12-27 21:16:54 -08:00
parent 0b8a7134d9
commit 4f378678c9
2 changed files with 16 additions and 1 deletions

View File

@ -7,6 +7,7 @@
./waybar.nix
./mako.nix
./walker.nix
./network-manager.nix
];
programs.kitty.enable = true;
@ -28,7 +29,7 @@
"$mod, V, togglefloating,"
"$mod, E, exec, dolphin"
"$mod, Q, killactive,"
"$mod SHIFT, Q, killactive,"
]
++ (
# workspaces
@ -62,10 +63,19 @@
natural_scroll = true;
};
};
general = {
resize_on_border = true;
};
decoration = {
};
};
extraConfig = ''
exec-once = waybar
exec-one = nm-applet --indicator
'';
};
}

View File

@ -0,0 +1,5 @@
{
services.network-manager-applet = {
enable = true;
};
}