feat(homeModules/desktop): add mako

This commit is contained in:
Mohammad Rafiq 2025-05-20 22:24:19 +08:00
parent 55551cfbb9
commit ccdd8d19d9
No known key found for this signature in database
4 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{ config, lib, ... }:
{
config = lib.mkMerge [
(lib.mkIf (config.desktop.notification-daemon == "mako") {
home.sessionVariables.NOTIFICATION_DAEMON = "mako";
services.mako = {
enable = true;
settings = { };
};
})
];
}