nix-config/lib/shared.nix
Daniel Poelzleithner fb9d929bc4 add prometheus host
unify logging into lib/logging
cleanup registry
2019-07-06 02:10:46 +02:00

13 lines
282 B
Nix

{ lib, ... }:
{
imports = [./logging.nix];
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n = {
defaultLocale = "en_US.UTF-8";
supportedLocales = lib.mkForce [ "en_US.UTF-8/UTF-8" "de_DE.UTF-8/UTF-8" ];
};
}