summaryrefslogtreecommitdiff
path: root/nix/modules/secrets.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-03-05 04:18:06 -0800
committerPreston Pan <ret2pop@gmail.com>2025-03-05 04:18:06 -0800
commitba6373ebfbcafc99ce7a4fa100b2a26fc3bc2731 (patch)
tree31675c3c370dc77ce1afe93cfa26b72a2ec4f0b9 /nix/modules/secrets.nix
parent0321f74a87df68584beb3c19a99969f9a794bb85 (diff)
add two new blog posts; bitcoin node; haskell devel
Diffstat (limited to 'nix/modules/secrets.nix')
-rw-r--r--nix/modules/secrets.nix28
1 files changed, 17 insertions, 11 deletions
diff --git a/nix/modules/secrets.nix b/nix/modules/secrets.nix
index d7a229f..2f8defc 100644
--- a/nix/modules/secrets.nix
+++ b/nix/modules/secrets.nix
@@ -5,17 +5,23 @@
age = {
keyFile = "/home/${config.monorepo.vars.userName}/.ssh/keys.txt";
};
- secrets.mail = {
- format = "yaml";
- path = "${config.sops.defaultSymlinkPath}/mail";
- };
- secrets.cloudflare-dns = {
- format = "yaml";
- path = "${config.sops.defaultSymlinkPath}/cloudflare-dns";
- };
- secrets.digikey = {
- format = "yaml";
- path = "${config.sops.defaultSymlinkPath}/digikey";
+ secrets = {
+ mail = {
+ format = "yaml";
+ path = "${config.sops.defaultSymlinkPath}/mail";
+ };
+ cloudflare-dns = {
+ format = "yaml";
+ path = "${config.sops.defaultSymlinkPath}/cloudflare-dns";
+ };
+ digikey = {
+ format = "yaml";
+ path = "${config.sops.defaultSymlinkPath}/digikey";
+ };
+ dn42 = {
+ format = "yaml";
+ path = "${config.sops.defaultSymlinkPath}/dn42";
+ };
};
defaultSymlinkPath = "/run/user/1000/secrets";