1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00

small changes & fixes

This commit is contained in:
xnm
2024-04-04 21:14:47 +03:00
parent e123495f64
commit efd9e945a0
7 changed files with 19 additions and 4 deletions

View File

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