Skyler Grey | 7f06215 | 2024-02-20 21:57:35 +0000 | [diff] [blame] | 1 | { config, lib, ... }: { |
2 | options = { | ||||
3 | chimera.notifications.mako.enable = lib.mkOption { | ||||
4 | type = lib.types.bool; | ||||
5 | description = "Whether to use mako to handle notifications"; | ||||
6 | default = config.chimera.hyprland.enable; | ||||
7 | example = false; | ||||
8 | }; | ||||
9 | }; | ||||
10 | |||||
11 | config = lib.mkIf config.chimera.notifications.mako.enable { | ||||
12 | services.mako.enable = true; | ||||
13 | }; | ||||
14 | } |