Fix locale settings

This commit is contained in:
NullBite 2023-12-30 11:59:42 -05:00
parent c3d75f0ebe
commit 886cc1fd97
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -1,5 +1,13 @@
{ config, lib, pkgs, ...}:
{
# locale settings
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ALL = "en_US.UTF-8";
};
};
# Enable flakes
nix.settings.experimental-features = ["nix-command" "flakes" ];