nixos-config/3modules/default.nix

20 lines
193 B
Nix
Raw Normal View History

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