about summary refs log tree commit diff
path: root/users/fcuny/desktop/wm
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-25 07:27:10 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-27 13:05:30 -0800
commite5b7a431076fa47914d57bcb32e666bac26eda64 (patch)
tree60b2942c70ebcee32a2851f59a448e78396361c7 /users/fcuny/desktop/wm
parentwofi: tweak the UI (diff)
downloadworld-e5b7a431076fa47914d57bcb32e666bac26eda64.tar.gz
mako: add notification daemon
Diffstat (limited to '')
-rw-r--r--users/fcuny/desktop/wm/default.nix1
-rw-r--r--users/fcuny/desktop/wm/notification.nix15
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;
+    };
+  };
+}