1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/services/dunst.nix

30 lines
563 B
Nix
Raw Normal View History

2026-02-13 23:27:35 +10:00
{upkgs, ...}: {
home.packages = with upkgs; [
2026-02-12 18:53:24 +00:00
libnotify
];
services.dunst = {
enable = true;
settings = {
global = {
monitor = "DP-3"; # second monitor
2026-02-13 23:27:35 +10:00
origin = "top-left";
layer = "top"; # above windows, below fullscreen
offset = "(16, 24)";
2026-02-12 18:53:24 +00:00
2026-02-13 23:27:35 +10:00
padding = 4;
gap_size = 4;
frame_width = 2;
2026-02-12 18:53:24 +00:00
2026-02-13 23:27:35 +10:00
font = "DepartureMono Nerd Font 8";
2026-02-12 18:53:24 +00:00
2026-02-13 23:27:35 +10:00
corner_radius = 12;
icon_corner_radius = 12;
2026-02-12 18:53:24 +00:00
2026-02-13 23:27:35 +10:00
progress_bar = true;
progress_bar_height = 16;
2026-02-12 18:53:24 +00:00
};
};
};
}