summary refs log tree commit diff
path: root/modules/work
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-07-25 16:11:54 +0200
committerMel <mel@rnrd.eu>2025-07-25 16:11:54 +0200
commitdd628e299db5c084d9fb787df9c61603643cc8c8 (patch)
treef6bacd8cd215a7dd6b2f28357ed64f9e95255b7f /modules/work
parentce740c588c63ff23f777f5672fdc6cdef8ea7c3b (diff)
downloadminerals-dd628e299db5c084d9fb787df9c61603643cc8c8.tar.zst
minerals-dd628e299db5c084d9fb787df9c61603643cc8c8.zip
Rename wg-gda interface to wg_hexa
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'modules/work')
-rw-r--r--modules/work/wireguard.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/work/wireguard.nix b/modules/work/wireguard.nix
index bfcf8dd..a025e6d 100644
--- a/modules/work/wireguard.nix
+++ b/modules/work/wireguard.nix
@@ -1,12 +1,12 @@
 { config, ... }:
 
 {
-  age.secrets."wg-gda.conf" = {
-    file = ../../secrets/wg-gda.conf.age;
+  age.secrets."wg_hexa.conf" = {
+    file = ../../secrets/wg_hexa.conf.age;
   };
 
-  networking.wg-quick.interfaces."wg-gda" = {
+  networking.wg-quick.interfaces."wg_hexa" = {
     autostart = false; # no need to start the interface during boot.
-    configFile = config.age.secrets."wg-gda.conf".path;
+    configFile = config.age.secrets."wg_hexa.conf".path;
   };
 }