dot_testing/boxes/x230t/special-ssh-magic.nix
2024-02-16 20:21:30 -06:00

7 lines
114 B
Nix

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