2024-01-22 15:50:05 -05:00
|
|
|
{...}: let
|
2024-07-24 20:52:32 -04:00
|
|
|
configPath = "/var/lib/docker-data";
|
2024-01-05 03:41:21 -05:00
|
|
|
in {
|
2024-01-22 15:50:05 -05:00
|
|
|
imports = [
|
2025-01-30 23:25:25 -05:00
|
|
|
(import ./forgejo/compose.nix configPath)
|
|
|
|
(import ./freshrss/compose.nix configPath)
|
|
|
|
(import ./gameyfin/compose.nix configPath)
|
|
|
|
(import ./hauk/compose.nix configPath)
|
|
|
|
(import ./immich/compose.nix configPath)
|
|
|
|
(import ./music/jbots/compose.nix configPath)
|
|
|
|
(import ./nextcloud/compose.nix configPath)
|
|
|
|
(import ./resume/compose.nix configPath)
|
|
|
|
(import ./vaultwarden/compose.nix configPath)
|
|
|
|
(import ./wg-easy/compose.nix configPath)
|
2024-02-28 22:22:14 -05:00
|
|
|
|
2025-01-30 23:25:25 -05:00
|
|
|
(import ./media/bazarr/compose.nix configPath)
|
|
|
|
(import ./media/joal/compose.nix configPath)
|
|
|
|
(import ./media/prowlarr/compose.nix configPath)
|
|
|
|
(import ./media/radarr/compose.nix configPath)
|
|
|
|
(import ./media/sabnzbd/compose.nix configPath)
|
|
|
|
(import ./media/seerr/compose.nix configPath)
|
|
|
|
(import ./media/sonarr/compose.nix configPath)
|
2024-01-09 13:48:00 -05:00
|
|
|
];
|
2024-01-07 02:05:16 -05:00
|
|
|
|
2024-07-24 15:49:31 -04:00
|
|
|
services.borgbackup.configs.docker = {
|
2024-03-02 22:04:23 -05:00
|
|
|
paths = [configPath];
|
|
|
|
};
|
2024-01-05 03:41:21 -05:00
|
|
|
}
|