puter/common/home-manager/features/dunst.nix

23 lines
410 B
Nix
Raw Normal View History

2023-09-17 11:31:20 +00:00
{
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;
};
};
};
}