18 lines
278 B
Nix
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;
|
|
};
|
|
}
|