From f7d555471be4c3a065f6007e3aca642fb559945e Mon Sep 17 00:00:00 2001
From: Gonne <gonne@mathebau.de>
Date: Tue, 18 Mar 2025 11:11:43 +0100
Subject: [PATCH] Rename secret files to have 'secrets.yaml' suffix.

---
 nixos/machines/nyarlathotep/configuration.nix                 | 4 ++--
 .../nyarlathotep/{dkim.keys.yaml => dkimKeys.secrets.yaml}    | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename nixos/machines/nyarlathotep/{dkim.keys.yaml => dkimKeys.secrets.yaml} (100%)

diff --git a/nixos/machines/nyarlathotep/configuration.nix b/nixos/machines/nyarlathotep/configuration.nix
index 762224c..57d00ff 100644
--- a/nixos/machines/nyarlathotep/configuration.nix
+++ b/nixos/machines/nyarlathotep/configuration.nix
@@ -76,13 +76,13 @@
       mode = "0440";
     };
     "dkim_rsa" = {
-      sopsFile = ./dkim.keys.yaml;
+      sopsFile = ./dkimKeys.secrets.yaml;
       owner = "stalwart-mail";
       group = "stalwart-mail";
       mode = "0440";
     };
     "dkim_ed25519" = {
-      sopsFile = ./dkim.keys.yaml;
+      sopsFile = ./dkimKeys.secrets.yaml;
       owner = "stalwart-mail";
       group = "stalwart-mail";
       mode = "0440";
diff --git a/nixos/machines/nyarlathotep/dkim.keys.yaml b/nixos/machines/nyarlathotep/dkimKeys.secrets.yaml
similarity index 100%
rename from nixos/machines/nyarlathotep/dkim.keys.yaml
rename to nixos/machines/nyarlathotep/dkimKeys.secrets.yaml