tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
feat: secrets.nix
devins.page
3 days ago
7dd0568f
53555ee2
+18
-1
3 changed files
expand all
collapse all
unified
split
hosts
bluepill
default.nix
bluepill-proxy
default.nix
secrets
secrets.nix
+2
hosts/bluepill-proxy/default.nix
···
15
15
dates = "04:40";
16
16
allowReboot = true;
17
17
};
18
18
+
19
19
+
age.identityPaths = ["/etc/ssh/ssh_host_ed25519_key"];
18
20
}
+1
-1
hosts/bluepill/default.nix
···
28
28
dates = "04:40";
29
29
};
30
30
31
31
-
age.identityPaths = ["/etc/age.key"];
31
31
+
age.identityPaths = ["/etc/ssh/ssh_host_ed25519_key"];
32
32
}
+15
secrets/secrets.nix
···
1
1
+
let
2
2
+
bluepill = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMlO7ODA+//BwvI4IEr+7vTgVTQl1rvs/DMr67F6Ztr4";
3
3
+
bluepill-proxy = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9k6d9zNhRAFv1cnSHEZ3i4qSLOnzE4ekHxMuRdkhi";
4
4
+
in
5
5
+
{
6
6
+
"bluesky-pds.age".publicKeys = [ bluepill ];
7
7
+
"draupnir-at.age".publicKeys = [ bluepill ];
8
8
+
"msmtp.age".publicKeys = [ bluepill ];
9
9
+
"navidrome.age".publicKeys = [ bluepill ];
10
10
+
"rclone-onedrive.age".publicKeys = [ bluepill ];
11
11
+
"restic.age".publicKeys = [ bluepill ];
12
12
+
"slskd.age".publicKeys = [ bluepill ];
13
13
+
"tranquil-pds.age".publicKeys = [ bluepill ];
14
14
+
"transmission.age".publicKeys = [ bluepill ];
15
15
+
}