aboutsummaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--machines/ettves/default.nix3
-rw-r--r--machines/fra01/default.nix4
-rw-r--r--machines/nyc01/default.nix4
-rw-r--r--machines/phaenn/default.nix5
-rw-r--r--machines/sin01/default.nix4
5 files changed, 9 insertions, 11 deletions
diff --git a/machines/ettves/default.nix b/machines/ettves/default.nix
index cf3fe23..5ffbad7 100644
--- a/machines/ettves/default.nix
+++ b/machines/ettves/default.nix
@@ -128,11 +128,10 @@ in {
allowedIPs = [ "10.10.0.0/24" "10.102.0.0/24" "fd15:3d8c:d429:102::/72" ];
};
- _module.args.nixinate = {
+ deploy = {
host = endpoint;
buildOn = "remote";
substituteOnTarget = true;
hermetic = false;
- nixOptions = [ "--show-trace" ];
};
}
diff --git a/machines/fra01/default.nix b/machines/fra01/default.nix
index 6e2f80f..f296fc1 100644
--- a/machines/fra01/default.nix
+++ b/machines/fra01/default.nix
@@ -30,10 +30,10 @@ in
allowedIPs = [ "10.102.5.0/24" "fd15:3d8c:d429:102:500::/72" ];
};
- _module.args.nixinate = {
+ deploy = {
host = endpoint;
buildOn = "local";
substituteOnTarget = true;
- hermetic = true;
+ hermetic = false;
};
}
diff --git a/machines/nyc01/default.nix b/machines/nyc01/default.nix
index ef81a57..8331c8f 100644
--- a/machines/nyc01/default.nix
+++ b/machines/nyc01/default.nix
@@ -30,10 +30,10 @@ in
allowedIPs = [ "10.102.3.0/24" "fd15:3d8c:d429:102:300::/72" ];
};
- _module.args.nixinate = {
+ deploy = {
host = endpoint;
buildOn = "local";
substituteOnTarget = true;
- hermetic = true;
+ hermetic = false;
};
}
diff --git a/machines/phaenn/default.nix b/machines/phaenn/default.nix
index 866f865..01649db 100644
--- a/machines/phaenn/default.nix
+++ b/machines/phaenn/default.nix
@@ -53,11 +53,10 @@ in
allowedIPs = [ "10.102.1.0/24" "fd15:3d8c:d429:102:100::/72" ];
};
- _module.args.nixinate = {
+ deploy = {
host = endpoint;
buildOn = "remote";
substituteOnTarget = true;
- hermetic = true;
- nixOptions = [ "--show-trace" ];
+ hermetic = false;
};
}
diff --git a/machines/sin01/default.nix b/machines/sin01/default.nix
index 4b168fc..ab70162 100644
--- a/machines/sin01/default.nix
+++ b/machines/sin01/default.nix
@@ -30,10 +30,10 @@ in
allowedIPs = [ "10.102.4.0/24" "fd15:3d8c:d429:102:400::/72" ];
};
- _module.args.nixinate = {
+ deploy = {
host = endpoint;
buildOn = "local";
substituteOnTarget = true;
- hermetic = true;
+ hermetic = false;
};
}
pan='4' class='logmsg'> 2021-10-20prepare for release on crates.ioMax Audron-39/+65 2021-10-20add async docs to macro crate and bump versionMax Audron-9/+10 2021-10-20change hook errors to be logged as warningsMax Audron-3/+3 they in nearly all cases aren't critical enough to warrant an actual error messages 2021-10-20fix configuration not loading correctly on release buildsMax Audron-8/+23 2021-10-19replace sedregex crate8-rework-sedMax Audron-20/+358 This replaces the sedregex crate with our own implementation for multiple reasons: 1. We required to access the parsed regex, this required a patch to the sedregex crate which did not get merged due to an inactive dev, blocking us from publishing on crates.Io 2. We wanted to highlight the changes done in bold 3. We want to add execution of multiple chained sed commands in the future which would require more modification 2021-10-19add formatting trait for irc codesMax Audron-0/+129 add an impl off the formatting trait on String to format Strings with the typical irc formatting codes for bold, italic etc 2021-10-17fix links in readmeMax Audron-2/+2