blob: 947ad9e467a196467a0b04467a86fe3665ed4396 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ 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-vim dnsutils inetutils iftop manpages
];
# Select internationalisation properties.
console = {
font = "Lat2-Terminus16";
keyMap = "de";
};
}
|