diff options
Diffstat (limited to 'nixos/modules/homelab/default.nix')
| -rw-r--r-- | nixos/modules/homelab/default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/modules/homelab/default.nix b/nixos/modules/homelab/default.nix new file mode 100644 index 0000000..5a9a97e --- /dev/null +++ b/nixos/modules/homelab/default.nix @@ -0,0 +1,11 @@ +{config, pkgs, lib, ...}: let + cfg = config.homelab; +in { + imports = [ + ./core + ./cloud + ]; + options.homelab = { + enable = lib.mkEnableOption "homelab"; + }; +} |
