From 1216e3c8a5f2c514b72568968d1b466cd8447d8f Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Wed, 22 Nov 2023 06:22:12 +0300 Subject: [PATCH] fix wg secret mount on blocky container --- profiles/servers/blocky.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/servers/blocky.nix b/profiles/servers/blocky.nix index d587988..cc11e1a 100644 --- a/profiles/servers/blocky.nix +++ b/profiles/servers/blocky.nix @@ -13,7 +13,7 @@ in { hostBridge = "br0"; localAddress = "${nodeAddress}/24"; tmpfs = [ "/" ]; - bindMounts."/var/secrets/${wgConf}" = { + bindMounts."${wgConf}" = { hostPath = wgConf; isReadOnly = true; };