nix-infra/hosts/test-vm/default.nix

13 lines
268 B
Nix

{ lib, pkgs, ... }: {
services.openssh = {
enable = true;
settings.PasswordAuthentication = lib.mkForce true;
};
networking.firewall.allowedTCPPorts = [ 22 ];
environment.systemPackages = with pkgs; [
htop
];
system.stateVersion = "23.10";
}