fix(sops): Correct regex to match file names

Previously binary files were missing a "+", requiring them to only have
single-character prefixes to the final ".bin"

This wouldn't allow for names like *.sops.env.bin, etc.

Change-Id: Ice4cdc90baf0002c50c6b15ea3a84e5e109b7036
Reviewed-on: https://git.clicks.codes/c/Infra/NixFiles/+/788
Tested-by: Skyler Grey <minion@clicks.codes>
Reviewed-by: Samuel Shuert <coded@clicks.codes>
diff --git a/.sops.nix b/.sops.nix
index 658417a..b3b0ab0 100644
--- a/.sops.nix
+++ b/.sops.nix
@@ -19,7 +19,7 @@
 {
   creation_rules = [
     {
-      path_regex = ''.*\/teal\/.*\.sops\.(yaml|json|env|ini|([^.]\.)*bin)$'';
+      path_regex = ''.*\/teal\/.*\.sops\.(yaml|json|env|ini|([^.]+\.)*bin)$'';
       pgp = nixpkgs.lib.concatStringsSep "," [
         keys.users.coded
         keys.users.minion