11 lines
182 B
Nix
11 lines
182 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
{
|
||
|
time.timeZone = "Europe/Berlin";
|
||
|
|
||
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||
|
console = {
|
||
|
font = "Lat2-Terminus16";
|
||
|
keyMap = "de";
|
||
|
};
|
||
|
}
|