hpc-cluster/nixops/nixops.nix

15 lines
184 B
Nix
Raw Permalink Normal View History

2020-02-08 00:01:31 +00:00
let
cluster = (import ./cluster.nix);
in {
nodes = map (x: {
{ config, pkgs, ... }:
{
deployment = {
targetHost = x.ip;
}
}) cluster.nodes;
}