20 lines
343 B
Nix
20 lines
343 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 = {};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|