chore[work]: make app startup consistent

This commit is contained in:
Leon Schwarzäugl 2025-10-07 19:31:48 +02:00
parent 057e8959a0
commit edf45b7be5
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
11 changed files with 418 additions and 46 deletions

View file

@ -0,0 +1,8 @@
{ lib, config, ... }:
{
options.swarselmodules.nm-applet = lib.mkEnableOption "enable network manager applet for tray";
config = lib.mkIf config.swarselmodules.nm-applet {
services.network-manager-applet.enable = true;
xsession.preferStatusNotifierItems = true; # needed for indicator icon to show
};
}