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