21 lines
491 B
Nix
21 lines
491 B
Nix
{ ... }: {
|
|
services.dunst = {
|
|
enable = true;
|
|
settings = {
|
|
global = {
|
|
font = "Fira Code 9";
|
|
origin = "bottom-right";
|
|
offset = "10x10";
|
|
frame_width = "2";
|
|
frame_color = "#ffffff";
|
|
corner_radius = "4";
|
|
width = "400";
|
|
};
|
|
urgency_critical.background = "#d12142";
|
|
urgency_normal = {
|
|
background = "#212121";
|
|
format = "<b><span foreground='#27e67a'>%s</span></b>\\n%b";
|
|
};
|
|
};
|
|
};
|
|
}
|