Files
manifests/apps/default.nix
T
2024-10-11 18:56:56 +02:00

26 lines
312 B
Nix

{ ... }:
{
imports = [
./atlantis.nix
./openfga.nix
];
config = {
services = {
atlantis = {
enable = true;
autoSync = true;
prune = false;
};
openfga = {
enable = true;
autoSync = true;
prune = false;
};
};
};
}