aboutsummaryrefslogtreecommitdiff
path: root/gui/dunst.nix
blob: a75b56d573daf9a8944792703b85fd9ecb5a29c9 (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
{ config, pkgs, ... }:

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

  services.dunst = {
    enable = true;
    settings = {
      global = {
        width = 300;
        height = 50;
        offset = "5x5";
        origin = "bottom-right";
        transparency = 10;
        frame_color = "#909737";
        background = "#909737";
        foreground = "#111111";
        font = "Iosevka 11";
      };
    };
  };
}