dot_testing/boxes/x230t/special-ssh-magic.nix

7 lines
114 B
Nix

{ lib, config, pkgs, ...}:
{
services.sshd.enable = true;
systemd.services.sshd.wantedBy = lib.mkForce [];
}