summaryrefslogtreecommitdiffstats
path: root/makefu/3modules/default.nix
blob: 015f472f72dd42c62bbfc48df627d5e4827bf5a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, lib, ... }:

with import ../../krebs/4lib { inherit lib; };
let
  cfg = config.krebs;

  out = {
    imports = [
    ];
    options.krebs = api;
    config = mkIf cfg.enable imp;
  };

  api = { };

  imp = { };

in
out