stockholm/makefu/krops.nix

99 lines
2.7 KiB
Nix
Raw Normal View History

2018-09-08 10:01:42 +00:00
{ config ? config, name, target ? name }: let
2018-10-07 15:08:01 +00:00
krops = ../submodules/krops;
2019-04-12 18:42:32 +00:00
nixpkgs-src = lib.importJSON ../krebs/nixpkgs.json;
2018-08-28 22:24:34 +00:00
2018-09-08 10:01:42 +00:00
lib = import "${krops}/lib";
2018-08-28 22:24:34 +00:00
pkgs = import "${krops}/pkgs" {};
2018-09-08 10:01:42 +00:00
host-src = {
2018-08-28 22:24:34 +00:00
secure = false;
torrent = false;
hw = false;
musnix = false;
python = false;
unstable = false; #unstable channel checked out
mic92 = false;
nms = false;
2018-09-16 22:24:05 +00:00
arm6 = false;
2018-08-28 22:24:34 +00:00
clever_kexec = false;
2018-09-19 00:53:18 +00:00
home-manager = false;
2018-08-28 22:24:34 +00:00
} // import (./. + "/1systems/${name}/source.nix");
source = { test }: lib.evalSource [
{
2018-11-30 22:18:53 +00:00
nixpkgs = if host-src.arm6 then {
# TODO: we want to track the unstable channel
symlink = "/nix/var/nix/profiles/per-user/root/channels/nixos/";
} else {
derivation = ''
with import <nixpkgs> {};
pkgs.fetchFromGitHub {
owner = "nixos";
2018-11-27 20:06:20 +00:00
repo = "nixpkgs";
rev = "${nixpkgs-src.rev}";
sha256 = "${nixpkgs-src.sha256}";
}
'';
2018-08-28 22:24:34 +00:00
};
nixos-config.symlink = "stockholm/makefu/1systems/${name}/config.nix";
2018-09-08 10:01:42 +00:00
stockholm.file = toString ./..;
2018-08-28 22:24:34 +00:00
secrets = if test then {
2018-09-08 10:01:42 +00:00
file = toString ./0tests/data/secrets;
2018-08-28 22:24:34 +00:00
} else {
pass = {
dir = "${lib.getEnv "HOME"}/.secrets-pass";
inherit name;
};
};
}
(lib.mkIf (host-src.unstable) {
nixpkgs-unstable.git = {
2020-10-18 17:07:43 +00:00
url = "https://github.com/nixos/nixpkgs";
ref = (lib.importJSON ../krebs/nixpkgs-unstable.json).rev;
};
})
2018-09-08 10:01:42 +00:00
(lib.mkIf (host-src.torrent) {
2018-08-28 22:24:34 +00:00
torrent-secrets = if test then {
2018-09-08 10:01:42 +00:00
file = toString ./0tests/data/secrets;
2018-08-28 22:24:34 +00:00
} else {
pass = {
dir = "${lib.getEnv "HOME"}/.secrets-pass";
name = "torrent";
};
};
})
2018-09-08 10:01:42 +00:00
(lib.mkIf ( host-src.musnix ) {
2018-08-28 22:24:34 +00:00
musnix.git = {
url = https://github.com/musnix/musnix.git;
ref = "master"; # follow the musnix channel, lets see how this works out
};
})
2018-09-08 10:01:42 +00:00
(lib.mkIf ( host-src.hw ) {
2018-08-28 22:24:34 +00:00
nixos-hardware.git = {
url = https://github.com/nixos/nixos-hardware.git;
ref = "30fdd53";
};
})
2018-09-19 00:53:18 +00:00
(lib.mkIf ( host-src.home-manager ) {
home-manager.git = {
url = https://github.com/rycee/home-manager;
ref = "cb17f1e";
2018-09-19 00:53:18 +00:00
};
})
2018-08-28 22:24:34 +00:00
];
in {
# usage: $(nix-build --no-out-link --argstr name HOSTNAME -A deploy)
deploy = pkgs.krops.writeDeploy "${name}-deploy" {
source = source { test = false; };
2018-09-08 10:01:42 +00:00
target = "root@${target}/var/src";
2018-08-28 22:24:34 +00:00
};
# usage: $(nix-build --no-out-link --argstr name HOSTNAME --argstr target PATH -A test)
test = { target ? target }: pkgs.krops.writeTest "${name}-test" {
2018-10-09 11:48:52 +00:00
force = true;
inherit target;
2018-08-28 22:24:34 +00:00
source = source { test = true; };
2018-09-08 10:10:45 +00:00
};
2018-08-28 22:24:34 +00:00
}