blob: 38a82407c81ee11af4779bd25de82cc6d1d9343e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
config,
pkgs,
...
}: let
cfg = config.collinux.desktop.sway.components.dunst;
settings = ''
[global]
frame_color = "#89b4fa"
separator_color = frame
highlight = "#89b4fa"
offset = "(8,8)"
origin = "top-right"
transparency = 10
font = "Iosevka Nerd Font"
[urgency_low]
background = "#1e1e2e"
foreground = "#cdd6f4"
[urgency_normal]
background = "#1e1e2e"
foreground = "#cdd6f4"
[urgency_critical]
background = "#1e1e2e"
foreground = "#cdd6f4"
frame_color = "#fab387"
'';
in
lib.mkIf cfg.enable {
files.".config/dunst/dunstrc".text = settings;
packages = with pkgs; [dunst inotify-tools];
}
|