tangled
alpha
login
or
join now
bwc9876.dev
/
nixos-config
1
fork
atom
Flake for my NixOS devices
1
fork
atom
overview
issues
pulls
pipelines
ssh-server: allow root login, clean up
Spoonbaker
3 months ago
30e7f9b3
5fdb192a
+1
-2
1 changed file
expand all
collapse all
unified
split
nixosModules
ssh-server.nix
+1
-2
nixosModules/ssh-server.nix
···
23
];
24
# TODO: Maybe just use 22 like a normal person
25
ports = [8069];
26
-
settings.GSSAPIAuthentication = false;
27
settings.PasswordAuthentication = false;
28
settings.UseDns = false;
29
# settings.LogLevel = "DEBUG1";
30
-
settings.PermitRootLogin = "no";
31
settings.KbdInteractiveAuthentication = false;
32
};
33
};
···
23
];
24
# TODO: Maybe just use 22 like a normal person
25
ports = [8069];
0
26
settings.PasswordAuthentication = false;
27
settings.UseDns = false;
28
# settings.LogLevel = "DEBUG1";
29
+
settings.PermitRootLogin = "prohibit-password";
30
settings.KbdInteractiveAuthentication = false;
31
};
32
};