aboutsummaryrefslogtreecommitdiff
path: root/machines/test
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-08-11 16:51:35 +0200
committerMax Audron <audron@cocaine.farm>2023-08-11 16:51:35 +0200
commit1bfe6a8e14be14020dcc273dbe008c9c4014be83 (patch)
treed07c6d321f326d4e707154d5aff3624355f27257 /machines/test
parentcleanup modules (diff)
add secrets submodule
Diffstat (limited to 'machines/test')
-rw-r--r--machines/test/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/machines/test/default.nix b/machines/test/default.nix
new file mode 100644
index 0000000..92294be
--- /dev/null
+++ b/machines/test/default.nix
@@ -0,0 +1,16 @@
+{ config, lib, pkgs, ... }:
+
+{
+ networking = {
+ domain = "vapor.systems";
+ hostName = "test";
+ };
+
+ _module.args.nixinate = {
+ host = "199.247.6.180";
+ sshUser = "audron";
+ buildOn = "remote";
+ substituteOnTarget = true;
+ hermetic = false;
+ };
+}