mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
20 lines
372 B
Nix
20 lines
372 B
Nix
|
|
{lib, ...}: {
|
||
|
|
options.fireproof.homelab = {
|
||
|
|
enable = lib.mkEnableOption "Enable homelab services (arr, nginx, postgres, prometheus, etc.)";
|
||
|
|
};
|
||
|
|
|
||
|
|
imports = [
|
||
|
|
./arr.nix
|
||
|
|
./flame.nix
|
||
|
|
./home-assistant.nix
|
||
|
|
./nextcloud.nix
|
||
|
|
./nginx.nix
|
||
|
|
./plex.nix
|
||
|
|
./postgres.nix
|
||
|
|
./prometheus.nix
|
||
|
|
./restic.nix
|
||
|
|
./sso.nix
|
||
|
|
./vaultwarden.nix
|
||
|
|
];
|
||
|
|
}
|