nix machine / user configurations
at terra 866 B view raw
1{ config, ... }: 2{ 3 # notification daemon 4 services.dunst = { 5 enable = true; 6 iconTheme = config.settings.iconTheme; 7 settings = { 8 global = { 9 alignment = "center"; 10 corner_radius = 16; 11 follow = "mouse"; 12 format = "<b>%s</b>\\n%b"; 13 frame_width = 1; 14 offset = "5x5"; 15 horizontal_padding = 8; 16 icon_position = "left"; 17 indicate_hidden = "yes"; 18 markup = "yes"; 19 max_icon_size = 64; 20 mouse_left_click = "do_action"; 21 mouse_middle_click = "close_all"; 22 mouse_right_click = "close_current"; 23 padding = 8; 24 plain_text = "no"; 25 separator_height = 1; 26 show_indicators = false; 27 shrink = "no"; 28 word_wrap = "yes"; 29 }; 30 31 fullscreen_delay_everything = { 32 fullscreen = "delay"; 33 }; 34 }; 35 }; 36}