aboutsummaryrefslogtreecommitdiff
path: root/gui/dunst.nix
blob: 79e5061269b8ba5904dc6c014ffd1ada8dcb6a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ config, pkgs, ... }:

{
  home.packages = with pkgs; [
    swaylock
    libnotify
  ];

  services.dunst = {
    enable = true;
    settings = {
      global = {
        notification_limit = 5;
        width = "(0, 800)";
        height = 40;
        offset = "6x6";
        origin = "bottom-right";
        transparency = 10;
        frame_color = "#909737";
        background = "#909737";
        foreground = "#111111";
        font = "Iosevka 10";
      };
    };
  };
}