mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
25 lines
488 B
Nix
25 lines
488 B
Nix
{lib, ...}: {
|
|
options.fireproof.homelab = {
|
|
enable = lib.mkEnableOption "Enable homelab services (arr, nginx, postgres, prometheus, etc.)";
|
|
};
|
|
|
|
imports = [
|
|
./arr.nix
|
|
./audiobookshelf.nix
|
|
./freshrss.nix
|
|
./glance.nix
|
|
./home-assistant
|
|
./jellyfin.nix
|
|
./nextcloud.nix
|
|
./nginx.nix
|
|
./plex.nix
|
|
./postgres.nix
|
|
./prometheus.nix
|
|
./qbittorrent.nix
|
|
./restic.nix
|
|
./scrutiny.nix
|
|
./security.nix
|
|
./sso
|
|
./vaultwarden.nix
|
|
];
|
|
}
|