summaryrefslogtreecommitdiffstats
path: root/networking.nix
diff options
context:
space:
mode:
Diffstat (limited to 'networking.nix')
-rw-r--r--networking.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/networking.nix b/networking.nix
new file mode 100644
index 0000000..cbf204c
--- /dev/null
+++ b/networking.nix
@@ -0,0 +1,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.
+ };
+}