athens/ops/plato.nix

13 lines
293 B
Nix
Raw Normal View History

2021-09-10 17:18:43 -04:00
{
network = { description = "Main dev server"; };
plato = { config, pkgs, ... }: {
imports = [ ../hosts/plato/configuration.nix ];
networking.hostName = "plato";
nixpkgs.system = "x86_64-linux";
2021-11-24 15:54:08 -05:00
deployment.targetHost = "plato";
2021-09-10 17:18:43 -04:00
deployment.targetUser = "root";
};
}