summaryrefslogtreecommitdiffstats
path: root/nin
diff options
context:
space:
mode:
authorlassulus <lass@blue.r>2018-09-08 12:31:56 +0200
committerlassulus <lass@blue.r>2018-09-08 12:31:56 +0200
commit68bf23466fcaf91df0f11ba0828ef41fc9f694bf (patch)
treeed6a4794dfbbdd7f358a920224ec5c5c14a56241 /nin
parent288db486eec19c88215f333065cf14fe44086cf7 (diff)
n: add krops.nix
Diffstat (limited to 'nin')
-rw-r--r--nin/krops.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/nin/krops.nix b/nin/krops.nix
new file mode 100644
index 00000000..2ba89641
--- /dev/null
+++ b/nin/krops.nix
@@ -0,0 +1,40 @@
+{ name }: let
+ inherit (import ../krebs/krops.nix { inherit name; })
+ krebs-source
+ lib
+ pkgs
+ ;
+
+ source = { test }: lib.evalSource [
+ krebs-source
+ {
+ nixos-config.symlink = "stockholm/nin/1systems/${name}/config.nix";
+ secrets = if test then {
+ file = toString ./0tests/dummysecrets;
+ } else {
+ pass = {
+ dir = "${lib.getEnv "HOME"}/.password-store";
+ name = "hosts/${name}";
+ };
+ };
+ }
+ ];
+
+in {
+ # usage: $(nix-build --no-out-link --argstr name HOSTNAME -A deploy)
+ deploy = pkgs.krops.writeDeploy "${name}-deploy" {
+ source = source { test = false; };
+ target = "root@${name}/var/src";
+ };
+
+ # usage: $(nix-build --no-out-link --argstr name HOSTNAME -A test)
+ test = pkgs.krops.writeTest "${name}-test" {
+ source = source { test = true; };
+ target = "${lib.getEnv "HOME"}/tmp/${name}-stockholm-test";
+ };
+
+ ci = pkgs.krops.writeTest "${name}-test" {
+ source = source { test = true; };
+ target = "${lib.getEnv "HOME"}/stockholm-build";
+ };
+}