nixfiles/hosts/storage/hardware.nix

12 lines
221 B
Nix
Raw Normal View History

2022-10-27 16:25:26 +01:00
{ ...}: {
imports = [
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
}