feat(homeModules/desktop): add mako
This commit is contained in:
parent
55551cfbb9
commit
ccdd8d19d9
4 changed files with 18 additions and 1 deletions
12
modules/home/desktop/notification-daemon/default.nix
Normal file
12
modules/home/desktop/notification-daemon/default.nix
Normal 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 = { };
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue