profiles/server: update preference for several values

This commit is contained in:
Gabriel Arazas 2023-06-28 14:02:35 +08:00
parent d42b74b1e9
commit e4b5dec7c1
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -29,7 +29,7 @@ in
# Set the time zone. We're making it easier to track by assigning a # Set the time zone. We're making it easier to track by assigning a
# universal time zone and what could be more universal than the # universal time zone and what could be more universal than the
# "Coordinated Universal Time" (which does not abbreviates to UTC, WTF?). # "Coordinated Universal Time" (which does not abbreviates to UTC, WTF?).
time.timeZone = "UTC"; time.timeZone = lib.mkForce "UTC";
# Add the usual manpages because it is not installed by default # Add the usual manpages because it is not installed by default
# apparently. # apparently.
@ -66,7 +66,7 @@ in
# It is expected that server configurations should be complete # It is expected that server configurations should be complete
# service-wise so we're not allowing user database to be mutable. # service-wise so we're not allowing user database to be mutable.
users.mutableUsers = false; users.mutableUsers = lib.mkForce false;
# Most of the servers will be deployed with outside access in mind so # Most of the servers will be deployed with outside access in mind so
# generate them certificates. Anything with a private network, ehh... so # generate them certificates. Anything with a private network, ehh... so
@ -80,7 +80,7 @@ in
}; };
# We're only going to deal with servers in English. # We're only going to deal with servers in English.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = lib.mkForce "en_US.UTF-8";
i18n.supportedLocales = lib.mkForce [ "en_US.UTF-8/UTF-8" ]; i18n.supportedLocales = lib.mkForce [ "en_US.UTF-8/UTF-8" ];
}) })