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

7 lines
114 B
Nix
Raw Permalink Normal View History

2024-02-16 20:21:30 -06:00
{ lib, config, pkgs, ...}:
{
services.sshd.enable = true;
systemd.services.sshd.wantedBy = lib.mkForce [];
}