about summary refs log tree commit diff
path: root/users/fcuny/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/desktop')
-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;
+    };
+  };
+}