2025-11-14 22:19:42 +01:00
|
|
|
{ pkgs, ... }:
|
2025-11-12 00:30:41 +01:00
|
|
|
{
|
|
|
|
|
services.swaync = {
|
|
|
|
|
enable = true;
|
2025-11-14 02:05:29 +01:00
|
|
|
settings = {
|
2025-11-14 22:19:42 +01:00
|
|
|
"$schema" = "${pkgs.swaynotificationcenter}/etc/xdg/swaync/configSchema.json";
|
|
|
|
|
|
|
|
|
|
hide-on-clear = true;
|
|
|
|
|
|
2025-11-14 02:05:29 +01:00
|
|
|
positionX = "center";
|
2025-11-14 22:19:42 +01:00
|
|
|
fit-to-screen = false;
|
|
|
|
|
control-center-height = 750;
|
|
|
|
|
|
|
|
|
|
widgets = [
|
|
|
|
|
"mpris"
|
|
|
|
|
"volume"
|
|
|
|
|
"title"
|
|
|
|
|
"dnd"
|
|
|
|
|
"inhibitors"
|
|
|
|
|
"notifications"
|
|
|
|
|
];
|
2025-11-29 10:21:13 +01:00
|
|
|
|
|
|
|
|
widget-config = {
|
|
|
|
|
mpris.autohide = true;
|
|
|
|
|
};
|
2025-11-14 02:05:29 +01:00
|
|
|
};
|
2025-11-12 00:30:41 +01:00
|
|
|
};
|
|
|
|
|
}
|