8 lines
167 B
Nix
8 lines
167 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
binfmt.emulatedSystems = [ "x86_64-linux" ];
|
|
kernelPackages = pkgs.linuxPackages_hardened;
|
|
loader.limine.enable = true;
|
|
};
|
|
}
|