Files
nix/hosts/common/configs/system/boot/default.nix
2025-05-29 16:59:00 +01:00

18 lines
278 B
Nix

{ pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
};
timeout = 1;
efi.canTouchEfiVariables = true;
};
initrd.systemd.enable = true;
kernelPackages = pkgs.linuxPackages_latest;
};
}