Inital commit

This commit is contained in:
OCbwoy3
2024-11-09 20:55:43 +02:00
commit ff816aebc9
14 changed files with 448 additions and 0 deletions

26
modules/nixos/i18n.nix Normal file
View File

@@ -0,0 +1,26 @@
{ config, pkgs, ... }:
{
time.timeZone = "Europe/Riga";
i18n.defaultLocale = "lv_LV.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "lv_LV.UTF-8";
LC_IDENTIFICATION = "lv_LV.UTF-8";
LC_MEASUREMENT = "lv_LV.UTF-8";
LC_MONETARY = "lv_LV.UTF-8";
LC_NAME = "lv_LV.UTF-8";
LC_NUMERIC = "lv_LV.UTF-8";
LC_PAPER = "lv_LV.UTF-8";
LC_TELEPHONE = "lv_LV.UTF-8";
LC_TIME = "lv_LV.UTF-8";
};
services.xserver.xkb = {
layout = "us";
variant = "";
};
}