Files
dotfiles/home/services/swaync.nix
2025-07-22 17:20:56 +05:30

17 lines
324 B
Nix

{device, ...}: {
services.swaync = {
enable = device.name == "ryu";
settings = {
notification-inline-replies = true;
cssPriority = "user";
};
};
xdg.configFile = {
"swaync/style.css".text = ''
.floating-notifications {
background: rgba(0, 0, 0, 0.3);
}
'';
};
}