athens/ops/aristotle.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

2021-04-26 20:28:47 -04:00
{
network = { description = "RPi 4 cluster"; };
agent = { config, pkgs, ... }: {
imports = [ ../hosts/aristotle/configuration.nix ];
networking.hostName = "agent";
nixpkgs.system = "aarch64-linux";
deployment.targetHost = "192.168.6.200";
deployment.targetUser = "root";
};
form = { config, pkgs, ... }: {
imports = [ ../hosts/aristotle/configuration.nix ];
networking.hostName = "form";
nixpkgs.system = "aarch64-linux";
deployment.targetHost = "192.168.6.201";
deployment.targetUser = "root";
};
matter = { config, pkgs, ... }: {
imports = [ ../hosts/aristotle/configuration.nix ];
networking.hostName = "matter";
nixpkgs.system = "aarch64-linux";
deployment.targetHost = "192.168.6.202";
deployment.targetUser = "root";
};
purpose = { config, pkgs, ... }: {
imports = [ ../hosts/aristotle/configuration.nix ];
networking.hostName = "purpose";
nixpkgs.system = "aarch64-linux";
deployment.targetHost = "192.168.6.203";
deployment.targetUser = "root";
};
}