fix(localisation): consolidate host-specific settings into single module
This commit is contained in:
parent
ab95710e1f
commit
c9dc8d54ac
3 changed files with 3 additions and 6 deletions
|
|
@ -40,8 +40,6 @@
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
||||||
i18n.extraLocaleSettings.LC_ALL = "en_AU.UTF-8";
|
|
||||||
|
|
||||||
users.users.${userName} = {
|
users.users.${userName} = {
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
# keep-sorted start
|
# keep-sorted start
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,6 @@
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
||||||
i18n.extraLocaleSettings.LC_ALL = "en_AU.UTF-8";
|
|
||||||
|
|
||||||
users.users.${userName} = {
|
users.users.${userName} = {
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
# keep-sorted start
|
# keep-sorted start
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
i18n = {
|
i18n = {
|
||||||
defaultLocale = "en_AU.UTF-8";
|
defaultLocale = "en_AU.UTF-8";
|
||||||
supportedLocales = [
|
extraLocales = [
|
||||||
|
"en_GB.UTF-8/UTF-8"
|
||||||
"en_US.UTF-8/UTF-8"
|
"en_US.UTF-8/UTF-8"
|
||||||
"en_AU.UTF-8/UTF-8"
|
|
||||||
];
|
];
|
||||||
|
extraLocaleSettings.LC_ALL = "en_GB.UTF-8";
|
||||||
};
|
};
|
||||||
|
|
||||||
time.timeZone = "Australia/Melbourne";
|
time.timeZone = "Australia/Melbourne";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue