23 lines
366 B
Nix
23 lines
366 B
Nix
{ tools, ... }:
|
|
|
|
{
|
|
services.ipfs = {
|
|
nodes = {
|
|
node = [ "VEGAS" "prophet" ];
|
|
clusterPeer = [ "VEGAS" "prophet" ];
|
|
gateway = [ "VEGAS" ];
|
|
};
|
|
nixos = {
|
|
node = [
|
|
./node.nix
|
|
];
|
|
gateway = [
|
|
./gateway.nix
|
|
./monitoring.nix
|
|
];
|
|
clusterPeer = [
|
|
./cluster.nix
|
|
];
|
|
};
|
|
};
|
|
}
|