1
0
forked from c3d2/nix-config
nix-config/config/shared.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
256 B
Nix
Raw Normal View History

{ lib, ... }:
{
2021-02-22 11:45:12 +01:00
imports = [ ./logging.nix ];
2022-06-12 17:26:32 +02:00
time.timeZone = "Europe/Berlin";
2022-06-12 17:26:32 +02:00
i18n = {
defaultLocale = "en_US.UTF-8";
2019-07-04 00:31:45 +02:00
supportedLocales = lib.mkForce [
"en_US.UTF-8/UTF-8"
"de_DE.UTF-8/UTF-8"
2022-06-12 17:26:32 +02:00
"C.UTF-8/UTF-8"
2019-07-04 00:31:45 +02:00
];
};
}