sneeuwvlok/modules/system/boot.nix
2025-03-20 09:30:57 +01:00

25 lines
446 B
Nix

{ config, options, lib, pkgs, ... }:
{
boot.loader = {
efi.canTouchEfiVariables = true;
# grub = {
# enable = true;
# efiSupport = cfg.mode == "uefi";
# devices = [ "nodev" ];
# configurationLimit = 1;
# };
systemd-boot.enable = true;
timeout = 0;
};
# nixos-boot = {
# enable = true;
# bgColor = { red = 17; green = 17; blue = 27; };
# };
time.timeZone = "Europe/Amsterdam";
}