nixfiles/hosts/hetzner-vm/hardware.nix

16 lines
218 B
Nix
Raw Normal View History

2023-09-18 03:56:58 +01:00
{...}: {
boot.loader = {
grub = {
enable = true;
device = "/dev/sda";
};
};
2022-11-02 11:32:03 +00:00
boot.initrd.kernelModules = ["nvme"];
2023-09-18 03:56:58 +01:00
2022-11-02 11:32:03 +00:00
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
}