nix-dotfiles/programs/dunst/default.nix
2024-02-21 15:02:57 -08:00

38 lines
691 B
Nix

{ config, pkgs, ... }:
{
services.dunst.enable = true;
services.dunst.settings = {
global = {
width = 280;
height = 240;
origin = "bottom-right";
offset = "0x300";
notification_limit = 3;
progress_bar_max_width = 280;
gap_size = 4;
corner_radius = 20;
};
urgency_low = {
background = "#FFFFFFCC";
foreground = "#000000";
frame_color = "#0000";
};
urgency_normal = {
background = "#FFFFFFCC";
foreground = "#000000";
frame_color = "#0000";
};
urgency_critical = {
background = "#FFFFFFCC";
foreground = "#000000";
frame_color = "#0000";
};
};
}