athens/ops/socrates.nix

13 lines
316 B
Nix
Raw Normal View History

2021-06-06 22:08:32 -04:00
{
network = { description = "Digital Ocean droplet"; };
socrates = { config, pkgs, ... }: {
imports = [ ../hosts/socrates/configuration.nix ];
networking.hostName = "socrates";
nixpkgs.system = "x86_64-linux";
deployment.targetHost = "167.99.176.10";
deployment.targetUser = "root";
};
}