nixos/systems/proxmox-vm/hardware-configuration.nix

31 lines
604 B
Nix
Raw Normal View History

2022-01-01 15:21:51 +01:00
{ ... }:
{
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"virtio_pci"
"virtio_scsi"
"sd_mod"
"sr_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "dm-snapshot" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
2022-01-10 13:31:35 +01:00
fileSystems."/mnt/data" = {
device = "10.7.89.108:raspi_data";
fsType = "nfs";
};
2022-01-01 15:21:51 +01:00
swapDevices = [
{ device = "/dev/disk/by-label/swap"; }
];
}