2021-11-23 12:09:24 +01:00
|
|
|
let
|
|
|
|
krops = builtins.fetchGit {
|
|
|
|
url = https://cgit.krebsco.de/krops/;
|
|
|
|
};
|
|
|
|
|
|
|
|
lib = import "${krops}/lib";
|
2022-04-27 00:21:19 +02:00
|
|
|
pkgs = import "${krops}/pkgs" { };
|
2021-11-23 12:09:24 +01:00
|
|
|
source = name:
|
2022-03-01 22:19:03 +01:00
|
|
|
lib.evalSource [
|
|
|
|
{
|
|
|
|
machine-config.file = toString ./.;
|
|
|
|
}
|
|
|
|
];
|
2021-11-23 12:09:24 +01:00
|
|
|
|
|
|
|
command = targetPath: ''
|
|
|
|
nix-shell -p git --run '
|
|
|
|
nix build -v '${targetPath}/machine-config#nixosConfigurations.$(hostname).config.system.build.toplevel' && \
|
|
|
|
nixos-rebuild switch -v --show-trace --flake ${targetPath}/machine-config
|
|
|
|
'
|
|
|
|
'';
|
|
|
|
|
|
|
|
createHost = name: target:
|
|
|
|
pkgs.krops.writeCommand "deploy-${name}" {
|
|
|
|
inherit command;
|
|
|
|
source = source name;
|
2022-03-18 21:14:51 +01:00
|
|
|
target = lib.mkTarget target;
|
2021-11-23 12:09:24 +01:00
|
|
|
};
|
2022-04-27 00:21:19 +02:00
|
|
|
in
|
|
|
|
rec {
|
2021-11-23 12:09:24 +01:00
|
|
|
# Deployments
|
|
|
|
|
|
|
|
# Run with:
|
|
|
|
# nix-build ./krops.nix -A loki && ./result
|
|
|
|
|
|
|
|
loki = createHost "loki" "root@loki";
|
2021-12-10 20:11:36 +01:00
|
|
|
drone = createHost "drone" "root@10.0.0.202";
|
2022-01-25 08:33:18 +01:00
|
|
|
proxy = createHost "proxy" "root@10.0.0.251";
|
2022-04-27 00:21:19 +02:00
|
|
|
gitea = createHost "gitea" "root@10.0.0.203";
|
2021-11-23 12:09:24 +01:00
|
|
|
}
|