summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/krebs.nix
blob: ce63135ecec9ac6b1e091b66b7fde8b6532cc59a (plain)
1
2
3
4
5
6
7
8
{ config, lib, ... }:
with lib;
let
  cfg = config.krebs;
in {
    options.krebs.enable = mkEnableOption "krebs";
    config = lib.mkIf config.krebs.enable {};
}