nixfiles/hosts/hetzner-vm/hardware.nix
2023-09-18 03:56:58 +01:00

16 lines
218 B
Nix

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