8 lines
142 B
Nix
8 lines
142 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
loader.grub.enable = true;
|
|
plymouth.enable = true;
|
|
};
|
|
}
|