SSH keys for remote builds

This commit is contained in:
iFargle 2023-09-28 19:31:10 +09:00
parent b78d040367
commit fb1d22861f
2 changed files with 4 additions and 1 deletions

View file

@ -19,7 +19,7 @@ nix develop -c /etc/nixos/git/docs/setup.sh
* [ ] vscode / emacs
* Add the nix lsp - [Link](https://github.com/nix-community/rnix-lsp)
* [x] Fix Grafana
* [ ] Build a better dashboard to monitor all my nixified devices
* [x] Build a better dashboard to monitor all my nixified devices
* [ ] Look into Remote Builds - [Link](https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html)
* [ ] Find a way to remove all default search engines in Firefox (Google, Amazon, etc)
* [ ] Figure out what the home-manager `account` options are for.

View file

@ -47,4 +47,7 @@
};
services.tailscale.authKeyFile = "/run/secrets/tailscale_keys/nixos-vm-01";
# networking.firewall.allowedTCPPorts = [ 22 ];
# SSH Keys for root for remote builds
users.users.root.openssh.authorizedKeys.keyFiles = [ ../../../keys/ssh/keys.txt ];
}