16 lines
218 B
Nix
16 lines
218 B
Nix
{...}: {
|
|
boot.loader = {
|
|
grub = {
|
|
enable = true;
|
|
device = "/dev/sda";
|
|
};
|
|
};
|
|
|
|
boot.initrd.kernelModules = ["nvme"];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/sda1";
|
|
fsType = "ext4";
|
|
};
|
|
}
|