summaryrefslogtreecommitdiff
path: root/os/server/configuration.nix
blob: 124b227a8580b813bb008803b3ed3d4a8e1087c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, ... }:
{
  imports = [ ../common/configuration.nix ];

  networking.hostName = lib.mkDefault "server";
  services.openssh = {
    enable = true;
    settings.PasswordAuthentication = false;
  };
}