{ config, pkgs, lib, ... }: { imports = [ ]; boot.kernelPackages = pkgs.linuxPackages_latest; systemd.services.sshd.wantedBy = lib.mkForce [ "multi-user.target" ]; environment.systemPackages = with pkgs; [ mosh tmux zsh pythonPackages.magic-wormhole ]; networking = { hostName = ""; firewall = { enable = true; allowPing = true; allowedTCPPorts = [ 22 # ssh ]; allowedUDPPortRanges = [ { from = 60000; to = 61000; } # mosh ]; }; }; i18n.consoleKeyMap = "dvp"; }