nixos-configs/homeConfigurations/vinzenz/swaync.nix

29 lines
497 B
Nix
Raw Normal View History

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