diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-25 07:27:10 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-27 13:05:30 -0800 |
commit | e5b7a431076fa47914d57bcb32e666bac26eda64 (patch) | |
tree | 60b2942c70ebcee32a2851f59a448e78396361c7 | |
parent | wofi: tweak the UI (diff) | |
download | world-e5b7a431076fa47914d57bcb32e666bac26eda64.tar.gz |
mako: add notification daemon
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/desktop/wm/default.nix | 1 | ||||
-rw-r--r-- | users/fcuny/desktop/wm/notification.nix | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/users/fcuny/desktop/wm/default.nix b/users/fcuny/desktop/wm/default.nix index 15aadd7..051b88b 100644 --- a/users/fcuny/desktop/wm/default.nix +++ b/users/fcuny/desktop/wm/default.nix @@ -5,6 +5,7 @@ ./bar.nix ./gammastep.nix ./launcher.nix + ./notification.nix ./screenlock.nix ./screenshot.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; + }; + }; +} |