7 lines
114 B
Nix
7 lines
114 B
Nix
{ lib, config, pkgs, ...}:
|
|
|
|
{
|
|
services.sshd.enable = true;
|
|
systemd.services.sshd.wantedBy = lib.mkForce [];
|
|
}
|