39 lines
779 B
Nix
39 lines
779 B
Nix
{
|
|
services.dunst = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
global = {
|
|
offset = "15x15";
|
|
corner_radius = 0;
|
|
transparency = 50;
|
|
frame_width = 1;
|
|
timeout = 3;
|
|
font = "Maple Mono NF 10";
|
|
icon_corner_radius = 0;
|
|
min_icon_size = 56;
|
|
};
|
|
|
|
urgency_low = {
|
|
background = "#000000";
|
|
foreground = "#ffffff";
|
|
frame_color = "#ffffff";
|
|
timeout = 3;
|
|
};
|
|
|
|
urgency_normal = {
|
|
background = "#000000";
|
|
foreground = "#ffffff";
|
|
frame_color = "#ffffff";
|
|
timeout = 3;
|
|
};
|
|
|
|
urgency_critical = {
|
|
background = "#000000";
|
|
foreground = "#ffffff";
|
|
frame_color = "#ffffff";
|
|
timeout = 5;
|
|
};
|
|
};
|
|
};
|
|
}
|