12 lines
221 B
Nix
12 lines
221 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Compute node: Cluster node with Nomad, GlusterFS server, and Syncthing
|
|
# Used by: c1, c2, c3
|
|
imports = [
|
|
./cluster-node.nix
|
|
./glusterfs.nix
|
|
./nomad.nix
|
|
./syncthing-data.nix
|
|
];
|
|
}
|