blob: 8d6667309c36035043340a11ec7127d9e3b679b0 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./modules/network.nix
../../common.nix
];
services.openssh = {
enable = true;
ports = [ 22 465 ];
settings.PasswordAuthentication = false;
};
boot.consoleLogLevel = 3;
networking.hostName = "mox";
environment.systemPackages = with pkgs; [ tmux ];
}
|