Fixed typos, added autoinstall notes, reworked homelab config

This commit is contained in:
Emmet 2024-02-28 17:39:00 -06:00
parent 4015df2e40
commit 16b832d5f0
8 changed files with 145 additions and 95 deletions

View file

@ -0,0 +1,10 @@
{ userSettings, ... }:
{
imports = [ ../homelab/base.nix
( import ../../system/security/sshd.nix {
# TODO add public ssh key for worklab
authorizedKeys = [ ];
inherit userSettings; })
];
}