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

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

  config = mkIf cfg.enable {
  };
}