Commit 9a89dfafe5a6

Vincent Demeester <vincent@sbr.pm>
2021-08-30 10:41:07
systems/sakhalin: fix secrets path 🤕
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 0175276
Changed files (1)
systems
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}";