summaryrefslogtreecommitdiff
path: root/hosts/surtr/bifrost/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/surtr/bifrost/default.nix')
-rw-r--r--hosts/surtr/bifrost/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/hosts/surtr/bifrost/default.nix b/hosts/surtr/bifrost/default.nix
index 790af94a..bdedf5b6 100644
--- a/hosts/surtr/bifrost/default.nix
+++ b/hosts/surtr/bifrost/default.nix
@@ -14,7 +14,7 @@ in {
14 Kind = "wireguard"; 14 Kind = "wireguard";
15 }; 15 };
16 wireguardConfig = { 16 wireguardConfig = {
17 PrivateKeyFile = config.sops.secrets.bifrost.path; 17 PrivateKeyFile = "/run/credentials/systemd-networkd.service/bifrost.priv";
18 ListenPort = 51822; 18 ListenPort = 51822;
19 }; 19 };
20 wireguardPeers = [ 20 wireguardPeers = [
@@ -49,12 +49,12 @@ in {
49 }; 49 };
50 }; 50 };
51 }; 51 };
52 systemd.services."systemd-networkd".serviceConfig.LoadCredential = [
53 "bifrost.priv:${config.sops.secrets.bifrost.path}"
54 ];
52 sops.secrets.bifrost = { 55 sops.secrets.bifrost = {
53 format = "binary"; 56 format = "binary";
54 sopsFile = ./surtr.priv; 57 sopsFile = ./surtr.priv;
55 mode = "0640";
56 owner = "root";
57 group = "systemd-network";
58 }; 58 };
59 }; 59 };
60} 60}