1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(tahina): init as guest laptop

This commit is contained in:
2022-03-29 00:21:16 +02:00
parent e08eb0e970
commit 43ab6b3210
6 changed files with 92 additions and 42 deletions

View File

@@ -108,11 +108,7 @@
in
toString (krops.packages.${system}.writeDeploy "deploy-${name}" {
source = krops.lib.evalSource [(source name)];
target = "root@${host}:${
if host == "130.61.203.118"
then "22"
else toString sshPort
}";
target = "root@${host}:${toString sshPort}";
});
in {
apps.${system} = let
@@ -123,10 +119,7 @@
type = "app";
program = deployScriptFor {
inherit name;
host =
if name == "tahina"
then "130.61.203.118"
else "${name}.r";
host = "${name}.r";
};
};
});