nixos-config/common/locale.nix
Christoph Heiss df9b15996d
machines: Add 'name'
Runs blocky + unbound for custom DNS.
Also adds all the common nix infrastructure needed.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-04-01 22:20:34 +02:00

9 lines
182 B
Nix

{ lib, ... }:
{
console.keyMap = lib.mkDefault "us";
i18n.defaultLocale = "en_US.UTF-8";
i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ];
time.timeZone = "Europe/Vienna";
}