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

29 lines
563 B
Nix

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