nixos/hardware/netcup-vps-200-g10.nix

13 lines
340 B
Nix
Raw Permalink Normal View History

{modulesPath, ...}: {
2023-01-15 16:52:17 +01:00
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"];
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
swapDevices = [{device = "/dev/disk/by-label/swap";}];
}