pub-solar-os/modules/core/i18n.nix
Hendrik Sokolowski 4190818304 Rework of x-os module / core profile
* move core settings to x-os
* add option to only install a lite core
* rename x-os module to core
* remove core profile from flake.nix
2022-08-14 14:47:44 +02:00

17 lines
282 B
Nix

{ config, pkgs, lib, ... }:
with lib;
{
config = {
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
console = {
font = "Lat2-Terminus16";
};
i18n = {
defaultLocale = "en_US.UTF-8";
};
};
}