From 2359e3a910f5cfe89cd9d58d4915324a81bcb014 Mon Sep 17 00:00:00 2001 From: James Walker Date: Fri, 10 Sep 2021 17:18:43 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20ops=20definition=20for=20plato?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ops/plato.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ops/plato.nix diff --git a/ops/plato.nix b/ops/plato.nix new file mode 100644 index 0000000..666c65e --- /dev/null +++ b/ops/plato.nix @@ -0,0 +1,12 @@ +{ + network = { description = "Main dev server"; }; + + plato = { config, pkgs, ... }: { + imports = [ ../hosts/plato/configuration.nix ]; + networking.hostName = "plato"; + nixpkgs.system = "x86_64-linux"; + + deployment.targetHost = "192.168.6.102"; + deployment.targetUser = "root"; + }; +}