summaryrefslogtreecommitdiff
path: root/common/common.nix
blob: b0aeb268349ad2a323982f97c9ede309df67e243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, ... }:

{

  services.journald.extraConfig = "MaxRetentionSec=48h";

  
  i18n.defaultLocale = "en_US.UTF-8";
  time.timeZone = "Europe/Amsterdam";

  environment.systemPackages = with pkgs; [
    wget vim htop dnsutils inetutils iftop manpages
  ];


}