nixos-config/machines/massicot/hardware-configuration.nix

33 lines
715 B
Nix
Raw Normal View History

2023-09-11 12:20:32 +00:00
{ modulesPath, ... }:
2023-07-29 15:34:24 +00:00
{
2023-09-11 12:20:32 +00:00
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub = {
efiSupport = true;
device = "nodev";
};
2024-08-25 09:45:58 +00:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/AC27-D9D6";
fsType = "vfat";
};
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"xen_blkfront"
];
2023-09-11 12:20:32 +00:00
boot.initrd.kernelModules = [ "nvme" ];
2024-08-25 09:45:58 +00:00
fileSystems."/" = {
2024-09-14 08:33:01 +00:00
device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_35068215-part1";
2024-08-25 09:45:58 +00:00
fsType = "ext4";
};
2024-09-14 08:33:01 +00:00
fileSystems."/mnt/storage" = {
device = "/dev/disk/by-id/scsi-0HC_Volume_101302395";
fsType = "btrfs";
options = [
"subvol=storage"
"compress=zstd"
"noatime"
];
};
2023-09-11 12:20:32 +00:00
}