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