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

{
  imports = [ ../nix ./owncast-integration ../ssh ../users ];

  security.sudo.wheelNeedsPassword = false;

  networking.firewall.logRefusedConnections = false;

  i18n.defaultLocale = "C.UTF-8";

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