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

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

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

  i18n.defaultLocale = "C.utf8";

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