PortValhalla/lib/modules/i18n.nix
2024-10-06 21:25:34 +02:00

16 lines
295 B
Nix

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