diff options
author | lassulus <lassulus@lassul.us> | 2019-04-28 13:46:00 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-28 13:46:00 +0200 |
commit | 2f8a55268c75142a19a58fe3752d197077a223b4 (patch) | |
tree | e2df9faec64cfbfdc2d57a653b6e928fb2ee81b4 /mb/krops.nix | |
parent | c483c69ba183772bfd2e5a2972bfd7cbc550fba3 (diff) | |
parent | 3dc61a8f2d525f7f6c1260ca97a918f78242cb1c (diff) |
Merge branch 'mb'
Diffstat (limited to 'mb/krops.nix')
-rw-r--r-- | mb/krops.nix | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/mb/krops.nix b/mb/krops.nix new file mode 100644 index 000000000..cb9ab3fdb --- /dev/null +++ b/mb/krops.nix @@ -0,0 +1,54 @@ +{ name }: let + inherit (import ../krebs/krops.nix { inherit name; }) + krebs-source + lib + pkgs + ; + + host-source = if lib.pathExists (./. + "/1systems/${name}/source.nix") then + import (./. + "/1systems/${name}/source.nix") { inherit lib pkgs; } + else + {} + ; + + source = { test }: lib.evalSource ([ + (krebs-source { test = test; }) + { + nixos-config.symlink = "stockholm/mb/1systems/${name}/configuration.nix"; + nixpkgs-unstable.git = { + url = "https://github.com/nixos/nixpkgs-channels"; + ref = "nixos-unstable"; + }; + secrets = if test then { + file = toString ./2configs/tests/dummy-secrets; + } else { + pass = { + dir = "${lib.getEnv "HOME"}/.password-store"; + name = "hosts/${name}"; + }; + }; + } + ] ++ (lib.optional (! test) host-source)); + +in { + + # usage: $(nix-build --no-out-link --argstr name HOSTNAME -A deploy) + deploy = { target ? "root@${name}/var/src" }: pkgs.krops.writeDeploy "${name}-deploy" { + source = source { test = false; }; + inherit target; + }; + + # usage: $(nix-build --no-out-link --argstr name HOSTNAME --argstr target PATH -A populate) + populate = { target, force ? false }: pkgs.populate { + inherit force; + source = source { test = false; }; + target = lib.mkTarget target; + }; + + # usage: $(nix-build --no-out-link --argstr name HOSTNAME --argstr target PATH -A test) + test = { target }: pkgs.krops.writeTest "${name}-test" { + force = true; + inherit target; + source = source { test = true; }; + }; +} |