{ id, ... }: { lib, config, nodes, ... }: with lib; { imports = [ ./hardware.nix ./disk.nix ./network.nix ./users.nix ./slurm.nix ]; deployment = { targetHost = "10.32.47.${toString (100 + id)}"; targetUser = "root"; }; hpc.node = { enable = true; inherit id; }; networking.hostName = config.hpc.node.name; networking.timeServers = [ "manager.${config.networking.domain}" ]; nix.settings = { substituters = [ "http://cache.${config.networking.domain}" ]; trusted-public-keys = [ (fileContents nodes."manager".config.gather.parts."cache/key".path) ]; }; }