mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
10 lines
206 B
Nix
10 lines
206 B
Nix
{ pkgs, lib, config, ... }: {
|
|
time.timeZone = "Etc/UTC";
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
console = if config.mods.xorg.enable then {
|
|
useXkbConfig = true;
|
|
} else {
|
|
keyMap = "us";
|
|
};
|
|
}
|