about summary refs log tree commit diff
path: root/modules/server/default.nix
blob: c7eb390d01ca592884bd9962578ba6c8f3f85a85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  imports = [ ../nix ../ssh ../users ];

  services.openssh.enable = true;
  security.sudo.wheelNeedsPassword = false;

  networking.firewall.logRefusedConnections = true;

  i18n.defaultLocale = "C.utf8";

  environment.systemPackages = with pkgs; [ htop ncdu ];
}