21 lines
342 B
Nix

{
options,
config,
lib,
...
}:
with lib;
with lib.frajul; let
cfg = config.system.locale;
in {
options.system.locale = with types; {
enable = mkBoolOpt false "Whether or not to manage locale settings.";
};
config = mkIf cfg.enable {
i18n.defaultLocale = "en_US.UTF-8";
console = {keyMap = mkForce "us";};
};
}