puter/common/home-manager/features/dunst.nix
2023-09-17 13:31:20 +02:00

23 lines
410 B
Nix

{
services.dunst = {
enable = true;
settings = {
global = {
width = 500;
height = 200;
offset = "20x50";
origin = "top-right";
transparency = 10;
frame_color = "#eceff1";
font = "monospace 12";
};
urgency_normal = {
background = "#37474f";
foreground = "#eceff1";
timeout = 10;
};
};
};
}