Initial nixos config edits

This commit is contained in:
2025-07-12 18:23:09 +05:00
parent 74c6a29a13
commit 9469b546a5
21 changed files with 95 additions and 150 deletions

View File

@@ -3,12 +3,12 @@
{
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
enable = false;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
PermitRootLogin = "no";
AllowUsers = [ "xnm" ];
AllowUsers = [ "andy" ];
};
};
}