Tailscale setup

This commit is contained in:
Lucas Thelen 2025-09-26 05:03:59 +00:00
parent 4b1d75b0e0
commit b7eee0a829
5 changed files with 134 additions and 1 deletions

8
secrets.nix Normal file
View file

@ -0,0 +1,8 @@
let
user1 =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICM04gDcfAxf6i51b+jtrWTE3MBumhkzxqH/exINSQgx";
machine1 =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINptuT84VNef3qdFdkqj5kbJtnzoenWcOwcWbdOqQxld root@labtop";
users = [ user1 machine1 ];
in { "tailscale.age".publicKeys = users; }