mirror of
https://github.com/zoriya/flake.git
synced 2025-12-06 06:36:19 +00:00
14 lines
244 B
Nix
14 lines
244 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
ports = [1022];
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
|
|
# Disable it for wls
|
|
environment.persistence."/nix/persist".enable = false;
|
|
}
|