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

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

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

  api = { };

  imp = { };

in
out