From 7d41c9811c4b4e75044e7f3ad68f6bc4591903a3 Mon Sep 17 00:00:00 2001 From: anemofilia Date: Thu, 10 Aug 2023 14:44:47 -0300 Subject: [PATCH] chore: commit secrets --- .gitignore | 2 +- modules/radix/secrets.scm | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 modules/radix/secrets.scm diff --git a/.gitignore b/.gitignore index eb6cfbf..8b13789 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -modules/radix/secrets.scm + diff --git a/modules/radix/secrets.scm b/modules/radix/secrets.scm new file mode 100644 index 0000000..11286fb --- /dev/null +++ b/modules/radix/secrets.scm @@ -0,0 +1,11 @@ +(define-module (radix secrets) + #:use-module (gnu) + #:export (%radio-password %root-password)) + +(define %radio-password + (string-append "$6$abc$YPieZeEBpa7oUo62ytkieOKzTNso/iGRSeB.GvH" + "9A3qM78WRGWIiQlK9gImWrLJw0ll18pjVgDNNamGeUV44G/")) + +(define %root-password + (string-append "$6$adsfc$51FzeGnMnVnyYiVotX8siJKUPFj8Na4aQRI7Ri" + "LXfttd5CrX8Ut1M5iteLWlEtNNDMlmFIuKTEegoR5L9avOA1"))