blob: 2a22029f96248567b7f1d6c035e7beabe52e4786 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, lib, ... }:
let
cfg = config.hm.env.mako;
in
{
options.hm.env.mako.enable = lib.mkEnableOption "enables mako notifications";
config = lib.mkIf cfg.enable {
services.mako.enable = true;
};
}
|