about summary refs log tree commit diff
path: root/modules/services/_template.nix
blob: c0c12c128b2036db16805d2c6e1828f3faec9b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, ... }:

with lib;
let
  cfg = config.modules.services._template;
in
{
  options.modules.services._template = {
    enable = mkEnableOption "";
  };

  config = mkIf cfg.enable {
    services._template = {
      enable = true;
    };
  };
}