nix-config/programs/boot.nix
2025-12-19 01:54:22 +01:00

15 lines
244 B
Nix

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