summaryrefslogtreecommitdiff
path: root/hosts/mox/configuration.nix
blob: 6742cc3de4fa58fde27c7ba245d137c12f1f562e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 ];
}