2024-01-22 15:50:05 -05:00
|
|
|
{...}: let
|
2024-01-07 02:05:16 -05:00
|
|
|
configPath = "/var/lib/arion";
|
2024-01-05 03:41:21 -05:00
|
|
|
in {
|
2024-01-22 15:50:05 -05:00
|
|
|
imports = [
|
|
|
|
../../../../modules/arion.nix
|
2024-01-09 13:48:00 -05:00
|
|
|
|
2024-01-22 15:50:05 -05:00
|
|
|
./forgejo/compose.nix
|
2024-02-18 00:10:05 -05:00
|
|
|
./homepage/compose.nix
|
2024-02-19 12:42:02 -05:00
|
|
|
./immich/compose.nix
|
2024-01-22 15:50:05 -05:00
|
|
|
./music/jbots/compose.nix
|
2024-02-23 00:34:43 -05:00
|
|
|
./nextcloud/compose.nix
|
2024-01-09 13:48:00 -05:00
|
|
|
];
|
2024-01-07 02:05:16 -05:00
|
|
|
|
2024-01-22 15:50:05 -05:00
|
|
|
arion = {
|
|
|
|
enable = true;
|
|
|
|
rwDataDir = configPath;
|
|
|
|
};
|
|
|
|
|
2024-01-07 02:05:16 -05:00
|
|
|
services.borgbackup.configs.arion = {
|
|
|
|
paths = [configPath];
|
|
|
|
exclude = ["**/lineageos*"];
|
2024-01-05 03:41:21 -05:00
|
|
|
};
|
|
|
|
}
|