nix/moduler/dunst.nix
2026-02-18 17:36:16 +01:00

20 lines
333 B
Nix

{ config
, pkgs
, ...
}: {
services.dunst = {
enable = true;
settings = {
global = {
width = 300;
height = 300;
follow = "keyboard";
offset = "30x50";
origin = "top-right";
transparency = 5;
frame_color = "#eceff1";
corner_radius = 10;
};
};
};
}