15 lines
244 B
Nix
15 lines
244 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
loader = {
|
|
timeout = 3;
|
|
efi.canTouchEfiVariables = true;
|
|
limine = {
|
|
enable = true;
|
|
style.wallpapers = [];
|
|
};
|
|
};
|
|
};
|
|
}
|