mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
85ead9e779
This seems like it could fit with the hardware module as well, however time will tell if we're able to keep this in system when importing it into containers and virtual machines. Note that boot.loader.efi.canTouchEfiVariables gets set to true during the nixos-install process, so it should be okay to keep here.
20 lines
387 B
Nix
20 lines
387 B
Nix
{
|
|
boot.loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
configurationLimit = 10;
|
|
};
|
|
|
|
timeout = 0;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
time.timeZone = "America/New_York";
|
|
|
|
i18n.defaultLocale = "ja_JP.UTF-8";
|
|
i18n.supportedLocales = [ "ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|