PortValhalla/lib/modules/i18n.nix

16 lines
295 B
Nix
Raw Normal View History

2024-07-09 00:23:23 +00:00
{ lib, ... }:
2024-10-06 19:25:34 +00:00
let inherit (lib) mkOption types;
in {
options = {
valhalla = {
i18n = {
localeSettings = mkOption {
type = types.attrsOf types.str;
description = "The system wide locale settings";
default = { };
2024-07-08 00:50:50 +00:00
};
};
};
2024-10-06 19:25:34 +00:00
};
}