about summary refs log tree commit diff
path: root/modules/server/default.nix
blob: 6daf6dbb0e316595d362567f8aeb5c67cdda7be6 (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 = false;

  i18n.defaultLocale = "C.utf8";

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