summaryrefslogtreecommitdiffstats
path: root/jeschli/krops.nix
blob: 9a8a7667673ac12a0577a19afece82cc6e195fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ name }: let
  inherit (import ../krebs/krops.nix { inherit name; })
    krebs-source
    lib
    pkgs
  ;

  source = { test }: lib.evalSource [
    (krebs-source { test = test; })
    {
      nixos-config.symlink = "stockholm/jeschli/1systems/${name}/config.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 {
        file = "${lib.getEnv "HOME"}/secrets/${name}";
      };
    }
    {
       home-manager.git = {
         url = https://github.com/rycee/home-manager;
         ref = "2ccbf43";
       };
    }
  ];

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 test)
  test = { target }: pkgs.krops.writeTest "${name}-test" {
    force = true;
    inherit target;
    source = source { test = true; };
  };
}