nixos/modules/homelab/default.nix

24 lines
458 B
Nix
Raw Normal View History

{lib, ...}: {
options.fireproof.homelab = {
enable = lib.mkEnableOption "Enable homelab services (arr, nginx, postgres, prometheus, etc.)";
};
imports = [
./arr.nix
2025-12-14 22:38:06 +01:00
./audiobookshelf.nix
2026-01-11 21:30:27 +01:00
./freshrss.nix
2025-12-14 01:34:24 +01:00
./glance.nix
./home-assistant.nix
2025-12-13 21:56:35 +01:00
./jellyfin.nix
./nextcloud.nix
./nginx.nix
./plex.nix
./postgres.nix
./prometheus.nix
2025-12-16 22:12:00 +01:00
./qbittorrent.nix
./restic.nix
./sso.nix
./vaultwarden.nix
];
}