marleyos/modules/home/services/dunst/default.nix

59 lines
1.4 KiB
Nix
Raw Normal View History

2024-11-17 05:26:35 +00:00
{
lib,
config,
...
2025-01-12 20:12:40 +00:00
}: let
cfg = config.marleyos.services.dunst;
2025-01-12 20:12:40 +00:00
in {
options.marleyos.services.dunst.enable = lib.mkEnableOption "dunst";
2024-11-17 05:26:35 +00:00
2025-01-12 20:12:40 +00:00
config = lib.mkIf cfg.enable {
2024-11-17 05:26:35 +00:00
services.dunst = {
enable = true;
2025-03-02 18:41:56 +00:00
settings = {
global = with config.stylix.fonts; {
monitor = 0;
sort = "yes";
idle_threshold = 120;
font = "${monospace.name} ${toString sizes.popup}";
markup = "full";
show_age_threshold = 60;
word_wrap = "yes";
ignore_newline = "no";
stack_duplicates = true;
hide_duplicate_count = false;
show_indicators = "yes";
sticky_history = "yes";
history_length = 20;
browser = "${lib.getExe config.marleyos.apps.browser} --new-tab";
always_run_script = true;
title = "Dunst";
class = "Dunst";
mouse_left_click = "do_action";
mouse_middle_click = "close_current";
mouse_right_click = "close_all";
};
signed_on = {
appname = "Pidgin";
summary = "*signed on*";
urgency = "low";
};
signed_off = {
appname = "Pidgin";
summary = "*signed off*";
urgency = "low";
};
says = {
appname = "Pidgin";
summary = "*says*";
urgency = "critical";
};
};
2024-11-17 05:26:35 +00:00
};
};
}