add dunst config file to hm

This commit is contained in:
2024-03-31 20:33:55 +01:00
parent 48851af0d8
commit 7820ced9ec
+34
View File
@@ -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;
};
};
};
}