{ pkgs, ... }: { imports = [ ./hardware-configuration.nix ./modules/network.nix ./modules/www.nix ./modules/sftp.nix ../../common.nix ]; services.openssh = { enable = true; settings.PasswordAuthentication = false; }; boot.consoleLogLevel = 3; networking.hostName = "kay"; environment.systemPackages = with pkgs; [ tmux ]; }