summary refs log tree commit diff stats
path: root/networking.nix
blob: cbf204cdc663b8c1e128312352d70e43e238e2cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:

{
   networking.hostName = "thinklappi"; 
   networking.networkmanager.enable = true;

   time.timeZone = "Europe/Berlin";

   i18n.defaultLocale = "en_US.UTF-8";
   console = {
     font = "Lat2-Terminus16";
     #keyMap = "de";
     useXkbConfig = true; # use xkbOptions in tty.
   };
}