summaryrefslogblamecommitdiff
path: root/hosts/mox/configuration.nix
blob: 8d6667309c36035043340a11ec7127d9e3b679b0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                
                       






                                                   
{ 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 ];
}