nix/services/dunst.nix
2024-07-04 01:14:24 +02:00

16 lines
328 B
Nix

{ ... }:
{
home-manager.users.krizej.services.dunst = {
enable = true;
settings = {
global = {
origin = "bottom-right";
frame_width = 1;
background = "#333333";
foreground = "#feeeee";
font = "JetBrains Mono NL 10";
frame_color = "#4c7899";
};
};
};
}