home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 9a89dfafe5a675255765268561aa3ea6a80d9ee2
parent 0175276c19f1176704c35eb058a6b0afbff0ae32
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 30 Aug 2021 10:41:07 +0200

systems/sakhalin: fix secrets path 🤕

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/hosts/sakhalin.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systems/hosts/sakhalin.nix b/systems/hosts/sakhalin.nix @@ -3,7 +3,7 @@ with lib; let hostname = "sakhalin"; - secretPath = ../../../secrets/machines.nix; + secretPath = ../../secrets/machines.nix; secretCondition = (builtins.pathExists secretPath); ip = strings.optionalString secretCondition (import secretPath).wireguard.ips."${hostname}";