From e5b7a431076fa47914d57bcb32e666bac26eda64 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 25 Feb 2022 07:27:10 -0800 Subject: mako: add notification daemon --- users/fcuny/desktop/wm/notification.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 users/fcuny/desktop/wm/notification.nix (limited to 'users/fcuny/desktop/wm/notification.nix') diff --git a/users/fcuny/desktop/wm/notification.nix b/users/fcuny/desktop/wm/notification.nix new file mode 100644 index 0000000..39d3fa8 --- /dev/null +++ b/users/fcuny/desktop/wm/notification.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, ... }: + +{ + home.packages = [ + pkgs.libnotify # to send notifications + ]; + + programs = { + mako = { + enable = true; + markup = true; + actions = true; + }; + }; +} -- cgit 1.4.1