nix-configs/modules/desktop-environment/home/notifications.nix

18 lines
444 B
Nix
Raw Normal View History

2024-03-06 10:09:02 +00:00
{pkgs, ...}: {
services.dunst = {
enable = true;
settings = {
global = {
dmenu = "${pkgs.rofi}/bin/rofi -theme gruvbox-dark -dmenu -p dunst";
browser = "${pkgs.firefox}/bin/firefox";
2024-03-06 10:09:02 +00:00
mouse_left_click = "context";
mouse_middle_click = "close_current";
background = "#282828";
foreground = "#ebdbb2";
frame_color = "#504945";
frame_width = 2;
};
};
};
}