notification center: scrollable list, configurable maxVisible (default 10)

This commit is contained in:
Damocles 2026-04-13 16:07:28 +02:00
parent 29a24b4205
commit 29f14a72f0
3 changed files with 240 additions and 213 deletions

View file

@ -103,6 +103,11 @@ in
default = 4;
description = "Maximum number of notification popups shown simultaneously.";
};
maxVisible = lib.mkOption {
type = lib.types.int;
default = 10;
description = "Maximum visible notifications in the notification center before scrolling.";
};
};
bluetooth = moduleOpt "bluetooth" (intervalOpt 5000);
network = moduleOpt "network" (intervalOpt 5000);