summaryrefslogtreecommitdiff
path: root/hm/env/mako.nix
blob: 3f9e3efdd255b729a29c4a5dc1a90bbf41247da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
      settings = {

      };
    };
  };
}