mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
9 lines
170 B
Nix
9 lines
170 B
Nix
{ pkgs, lib, config, ... }: {
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
X11Forwarding = false;
|
|
};
|
|
};
|
|
}
|