imported laptop configs

This commit is contained in:
2026-02-13 19:15:24 -06:00
parent 7d23fc780c
commit 7dd1c8d2d4
9 changed files with 373 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{self, inputs, ...}: {
flake.nixosModules.localization = { pkgs, ... }: {
time.timeZone = "America/Chicago";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
services.xserver.xkb = {
layout = "us";
variant = "";
};
};
}