stockholm/makefu/3modules/default.nix

20 lines
193 B
Nix
Raw Normal View History

2015-07-24 20:39:11 +00:00
{ config, lib, ... }:
2015-09-02 08:02:05 +00:00
with lib;
2015-07-24 20:39:11 +00:00
let
cfg = config.krebs;
out = {
imports = [
];
options.krebs = api;
config = mkIf cfg.enable imp;
};
api = { };
imp = { };
in
out