{ lib, ... }:
let inherit (lib) mkOption types;
in {
  options = {
    valhalla = {
      i18n = {
        localeSettings = mkOption {
          type = types.attrsOf types.str;
          description = "The system wide locale settings";
          default = { };
        };
      };
    };
  };
}