Update default.nix

This commit is contained in:
Thilo Hohlt
2023-07-24 14:38:54 +02:00
committed by GitHub
parent 051732d00e
commit fc52e0bec6

View File

@@ -22,6 +22,15 @@
}; };
}; };
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
users.users.thiloho.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAy1KnXinQJNcGpWTe1jifNuUEfKZRmyshVX5fPEWR19 thiloho@pc"
];
home-manager.users.thiloho = { pkgs, lib, ... }: { home-manager.users.thiloho = { pkgs, lib, ... }: {
home.stateVersion = "23.05"; home.stateVersion = "23.05";
}; };