10 lines
335 B
Nix
10 lines
335 B
Nix
{ modulesPath, lib, ... }:
|
|
{
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
|
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
}
|