nix-dotfiles/programs/dunst/default.nix

42 lines
741 B
Nix
Raw Normal View History

2023-11-20 01:38:11 -08:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
libnotify
];
2023-11-20 01:38:11 -08:00
services.dunst.enable = true;
services.dunst.settings = {
global = {
2024-02-21 15:02:57 -08:00
width = 280;
height = 240;
origin = "bottom-right";
offset = "0x300";
notification_limit = 3;
progress_bar_max_width = 280;
gap_size = 4;
corner_radius = 20;
2023-11-20 01:38:11 -08:00
};
urgency_low = {
2024-02-21 15:02:57 -08:00
background = "#FFFFFFCC";
foreground = "#000000";
frame_color = "#0000";
2023-11-20 01:38:11 -08:00
};
urgency_normal = {
2024-02-21 15:02:57 -08:00
background = "#FFFFFFCC";
foreground = "#000000";
frame_color = "#0000";
2023-11-20 01:38:11 -08:00
};
urgency_critical = {
2024-02-21 15:02:57 -08:00
background = "#FFFFFFCC";
foreground = "#000000";
frame_color = "#0000";
2023-11-20 01:38:11 -08:00
};
};
}