16 lines
295 B
Nix
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 = { };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|