From 7820ced9ecd6b2fc5f3414b7dfdff7c361cd52a5 Mon Sep 17 00:00:00 2001 From: Liam Malone Date: Sun, 31 Mar 2024 20:33:55 +0100 Subject: [PATCH] add dunst config file to hm --- modules/home-manager/dunst.nix | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 modules/home-manager/dunst.nix diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix new file mode 100644 index 0000000..63a857c --- /dev/null +++ b/modules/home-manager/dunst.nix @@ -0,0 +1,34 @@ +{ config, pkgs, lib, ... }: + +{ + services.dunst = { + enable = true; + iconTheme = pkgs.arc-icon-theme; + settings = { + global = { + width = 300; + height = 300; + offset = "top-right"; + transparency = 10; + frame_color = "#22bbff"; + font = "FiraCodeNerdFont"; + }; + + urgency_low = { + background = "#37474f"; + foreground = "#ecefff"; + timeout = 5; + }; + urgency_normal = { + background = "#37474f"; + foreground = "#ecefff"; + timeout = 5; + }; + urgency_high = { + background = "#cc474f"; + foreground = "#ecefff"; + timeout = 5; + }; + }; + }; +}