Add Network Manager applet

This commit is contained in:
Jakob Lechner 2023-12-27 19:27:11 +00:00
parent 789415718f
commit 58f64d8dcb
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
2 changed files with 9 additions and 0 deletions

View file

@ -25,6 +25,7 @@
./mailserver
./matrix
./mute-indicator.nix
./network-manager.nix
./nix.nix
./obs.nix
./pipewire.nix

View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
lib.mkIf config.jalr.gui.enable {
programs.nm-applet = {
enable = true;
indicator = true;
};
}