15 lines
321 B
Nix
15 lines
321 B
Nix
# Replace with output of `nixos-generate-config --show-hardware-config`
|
|
# after installing on the actual VPS.
|
|
{ config, lib, modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
"virtio_pci"
|
|
"virtio_scsi"
|
|
"ahci"
|
|
"sd_mod"
|
|
];
|
|
}
|