1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Add dunst

This commit is contained in:
RGBCube 2023-11-06 14:42:38 +03:00
parent 4584e98557
commit 7a4f784d0f
No known key found for this signature in database
3 changed files with 44 additions and 0 deletions

1
.gitignore vendored
View file

@ -5,6 +5,7 @@
!machines/enka/bat/
!machines/enka/discord/
!machines/enka/docker/
!machines/enka/dunst/
!machines/enka/firefox/
!machines/enka/fuzzel/
!machines/enka/git/

View file

@ -12,6 +12,7 @@
./bat
./discord
./docker
./dunst
./firefox
./fuzzel
./git

View file

@ -0,0 +1,42 @@
{ pkgs, homeConfiguration, enabled, ... }:
homeConfiguration "nixos" {
services.dunst = enabled {
iconTheme = {
name = "gruvbox-dark";
package = pkgs.gruvbox-dark-icons-gtk;
};
settings = {
global = {
horizontal_padding = 10;
padding = 10;
frame_color = "#D79921";
frame_width = 1;
seperator_color = "frame";
background = "#1D2021";
foreground = "#DDC7A1";
alignment = "left";
font = "JetBrainsMono 12";
};
urgency_low = {
frame_color = "#94A6FF";
timeout = 5;
};
urgency_normal = {
frame_color = "#FAA41A";
timeout = 10;
};
urgency_critical = {
frame_color = "#F15D22";
timeout = 15;
};
};
};
}