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