nixos-configs/devices/nas/modules/arion/default.nix

26 lines
461 B
Nix
Raw Normal View History

{...}: let
configPath = "/var/lib/arion";
in {
imports = [
../../../../modules/arion.nix
./forgejo/compose.nix
2024-02-28 12:31:40 -05:00
./freshrss/compose.nix
2024-02-28 12:45:17 -05:00
./hauk/compose.nix
2024-02-18 00:10:05 -05:00
./homepage/compose.nix
2024-02-19 12:42:02 -05:00
./immich/compose.nix
./music/jbots/compose.nix
2024-02-23 00:34:43 -05:00
./nextcloud/compose.nix
];
arion = {
enable = true;
rwDataDir = configPath;
};
services.borgbackup.configs.arion = {
paths = [configPath];
exclude = ["**/lineageos*"];
};
}