14 lines
312 B
Nix
14 lines
312 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Cluster node configuration
|
|
# Extends minimal-node with cluster-specific services (Consul, GlusterFS, CIFS)
|
|
# Used by: compute nodes (c1, c2, c3)
|
|
imports = [
|
|
./minimal-node.nix
|
|
./unattended-encryption.nix
|
|
./cifs-client.nix
|
|
./consul.nix
|
|
./glusterfs-client.nix
|
|
];
|
|
}
|