blob: 26634a42ea1add8d7436b0e2d23190b27b6760c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, ... }:
with lib;
let
cfg = config.modules.services._template;
in
{
options.modules.services._template = {
enable = mkEnableOption "";
};
config = mkIf cfg.enable { };
}
|