new_dots/configuration/modules/boot.nix
2026-01-03 12:48:28 +01:00

10 lines
205 B
Nix

{pkgs, ...}: {
boot = {
kernelPackages = pkgs.linuxPackages_6_6;
loader.grub = {
enable = true;
device = "/dev/disk/by-id/ata-KINGSTON_SKC300S37A60G_50026B7239039148";
};
};
}