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

fix(krops): correctly configure system-secrets

This commit is contained in:
2020-10-20 21:59:29 +02:00
parent 8e3691d775
commit 3ae7b4d67d

View File

@@ -22,8 +22,8 @@ let
stockholm.git = gitFromJson .versions/stockholm.json;
retiolum.git = gitFromJson .versions/retiolum.json;
system-secrets.pass = {
dir = toString ~/.password-store/systems;
inherit name;
dir = toString ~/.password-store;
name = "systems/${name}";
};
secrets.pass = {
dir = toString ~/.password-store;
@@ -52,6 +52,6 @@ in {
toum = writeDeploy "deploy-toum" (regularSystem {
path = systems/toum;
name = "toum";
address = "192.168.178.24";
address = "toum.r";
});
}