about summary refs log tree commit diff
path: root/users/fcuny/desktop/wm/notification.nix
blob: 39d3fa8bed6ef932527dab1b42a377b4e7a2b216 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, pkgs, ... }:

{
  home.packages = [
    pkgs.libnotify # to send notifications
  ];

  programs = {
    mako = {
      enable = true;
      markup = true;
      actions = true;
    };
  };
}