dotfiles/nixos/i3/dunst.nix

31 lines
559 B
Nix
Raw Normal View History

2020-01-10 23:32:05 +00:00
{ config, pkgs, ... }:
{
services.dunst = {
enable = true;
2020-01-11 14:13:01 +00:00
settings = {
global = {
frame_color = "#93a1a1";
separator_color = "#93a1a1";
};
low = {
msg_urgency = "low";
background = "#073642";
foreground = "#657b83";
};
normal = {
msg_urgency = "normal";
background = "#586e75";
foreground = "#93a1a1";
};
critical = {
msg_urgency = "critical";
background = "#dc322f";
foreground = "#eee8d5";
};
};
2020-01-10 23:32:05 +00:00
};
}