18 lines
211 B
Nix
18 lines
211 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./atlantis.nix
|
|
./openfga.nix
|
|
];
|
|
|
|
config = {
|
|
services = {
|
|
atlantis = {
|
|
enable = true;
|
|
autoSync = true;
|
|
prune = false;
|
|
};
|
|
};
|
|
};
|
|
}
|