nix/modules/services/dunst/default.nix

28 lines
512 B
Nix
Raw Normal View History

2024-08-31 16:58:46 +02:00
{...}: {
2024-08-31 16:04:57 +02:00
home-manager.users.joy.services.dunst = {
enable = true;
# settings = {
2024-08-31 16:58:46 +02:00
# global = {
# frame_color = "#89b4fa";
# separator_color = "frame";
# };
2024-08-31 16:04:57 +02:00
2024-08-31 16:58:46 +02:00
# urgency_low = {
# background = "#1e1e2e";
# foreground = "#cdd6f4";
# };
2024-08-31 16:04:57 +02:00
2024-08-31 16:58:46 +02:00
# urgency_normal = {
# background = "#1e1e2e";
# foreground = "#cdd6f4";
# };
2024-08-31 16:04:57 +02:00
2024-08-31 16:58:46 +02:00
# urgency_critical = {
# background = "#1e1e2e";
# foreground = "#cdd6f4";
# frame_color = "#fab387";
# };
2024-08-31 16:04:57 +02:00
# };
};
}