nix-config/programs/boot.nix

15 lines
245 B
Nix

{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
timeout = 3;
efi.canTouchEfiVariables = true;
limine = {
enable = true;
style.wallpapers = [ ];
};
};
};
}