nix-config/modules/base/locale.nix
2025-02-25 15:56:58 +01:00

21 lines
320 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.base.locale;
in {
options = {
horseman.base.locale = {
enable = mkEnableOption "Locale settings";
};
};
config = {
time.timeZone = "Europe/Amsterdam";
};
}