Refactor homelab modules

This commit is contained in:
Oliver Davies 2025-04-30 01:10:02 +01:00
parent e6f269b123
commit fe508bd127
9 changed files with 224 additions and 83 deletions

View file

@ -1,4 +1,17 @@
{ lib, ... }:
with lib;
{
options.nixosModules.homelab = {
enable = mkEnableOption "Enable homelab services and configuration";
baseDomain = mkOption {
description = "The base domain to use for this homelab.";
type = types.str;
};
};
imports = [
./acme.nix
./audiobookshelf.nix