services: Add configuration for dunst
dunst is a notification daemon.
This commit is contained in:
parent
7fc99ce334
commit
30202dd3d0
1 changed files with 25 additions and 0 deletions
25
home/alex/services/dunst/default.nix
Normal file
25
home/alex/services/dunst/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config.services.dunst = {
|
||||
enable = true;
|
||||
iconTheme = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.gnome3.adwaita-icon-theme;
|
||||
size = "16x16";
|
||||
};
|
||||
settings = {
|
||||
global = {
|
||||
monitor = 0;
|
||||
geometry = "600x50-50+65";
|
||||
shrink = "yes";
|
||||
transparency = 10;
|
||||
padding = 16;
|
||||
horizontal_padding = 16;
|
||||
font = "JetBrainsMono Nerd Font 10";
|
||||
line_height = 4;
|
||||
format = "<b>%s</b>\\n%b";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue