Jafner.net/dotfiles/nixos/desktop/sysconfig/localization.nix
Joey Hafner d002643347
Big update:
- WIP: Installer configuration to be used for portable or new systems.
- Add defaultApps (zen for links, codium for plain text).
- Refactor Ollama (AI) to skip model selection, WIP "codewriter" model.
- Password-manager: Switch to wayland package for rofi-rbw, increase lock timeout.
- Add mangohud config that shows FPS, frame time, throttling status in a horizontal layout below OW's HUD.
- Add nixGL config to use mesa and vulkan.
- Refactor configuration.nix as a "hub" file that just imports other files.
- amdgpu: Remove problematic amdvlk driver. Was causing misbehavior in Overwatch.
- gaming: Add gamescope and gamemode.
2024-12-12 00:00:08 -08:00

15 lines
421 B
Nix

{ ... }: {
time.timeZone = "America/Los_Angeles";
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";
};
}