41 lines
622 B
Nix
Executable File
41 lines
622 B
Nix
Executable File
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./apps/arrs
|
|
./apps/crowdsec
|
|
./apps/jellyfin
|
|
./apps/jellyseerr
|
|
./apps/nextcloud
|
|
./apps/ollama
|
|
./apps/paperless
|
|
./apps/paperless-ai
|
|
./apps/traefik
|
|
./apps/wyoming
|
|
../../modules
|
|
|
|
./apps/netdata
|
|
];
|
|
|
|
nas-apps = {
|
|
|
|
free-games-claimer.enable = true;
|
|
|
|
manyfold.enable = true;
|
|
|
|
|
|
netbootxyz = {
|
|
enable = true;
|
|
port = "4000";
|
|
port2 = "4080";
|
|
};
|
|
|
|
paperless-ai.enable = true;
|
|
|
|
tdarr.enable = true;
|
|
|
|
# spotify cancelled, data still in db
|
|
your_spotify.enable = false;
|
|
mongodb.enable = false;
|
|
};
|
|
}
|