{pkgs, ...}: { e11sync = { enable = true; secretKeyPath = "/etc/super"; migrateOnStart = true; }; environment.systemPackages = with pkgs; [ tmux htop ]; nix.extraOptions = ''experimental-features = nix-command flakes''; users = { mutableUsers = false; users.nixos = { extraGroups = ["wheel"]; isNormalUser = true; hashedPassword = ""; }; }; virtualisation.graphics = false; security.sudo.wheelNeedsPassword = false; services.getty.autologinUser = "nixos"; networking = { hostName = "vm"; firewall.allowedTCPPorts = [22 8001]; }; system.stateVersion = "23.11"; }