18 lines
345 B
Nix
18 lines
345 B
Nix
{lib, ...}: {
|
|
services.dunst = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
global = {
|
|
offset = "15x15";
|
|
corner_radius = 0;
|
|
transparency = 50;
|
|
frame_width = 1;
|
|
timeout = 3;
|
|
font = lib.mkForce "Maple Mono NF 10";
|
|
icon_corner_radius = 0;
|
|
min_icon_size = 56;
|
|
};
|
|
};
|
|
};
|
|
}
|