17 lines
319 B
Nix
17 lines
319 B
Nix
{device, ...}: {
|
|
services.swaync = {
|
|
enable = device.is "ryu";
|
|
settings = {
|
|
notification-inline-replies = true;
|
|
cssPriority = "user";
|
|
};
|
|
};
|
|
xdg.configFile = {
|
|
"swaync/style.css".text = ''
|
|
.floating-notifications {
|
|
background: rgba(0, 0, 0, 0.0);
|
|
}
|
|
'';
|
|
};
|
|
}
|