nix-config/hosts/nixedo/modules/default.nix

27 lines
448 B
Nix
Raw Normal View History

2025-04-30 01:10:02 +01:00
{ lib, ... }:
with lib;
{
options.features.homelab = {
2025-04-30 01:10:02 +01:00
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
./cloudflared.nix
./containers
./forgejo.nix
./immich.nix
./jellyfin.nix
./nginx
./paperless.nix
];
}