From 14b7e7cdb5588321535ee7c9807d5c2aeb61e2e8 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Tue, 18 Apr 2023 18:05:33 +0200 Subject: [PATCH] Enable mako notification daemon --- home-manager.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home-manager.nix b/home-manager.nix index 38e8a09..db4c114 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -55,6 +55,7 @@ in fira # fira sans font fira-code # fira code font fish # fish shell + mako # notification daemon ]; imports = [ @@ -73,5 +74,7 @@ in }; }; }; + + services.mako.enable = true; }; }