noisebridge-wiki/hosts/wiki-replica/hardware-configuration.nix
Jet 8cfede9f57
Some checks failed
CI / check (push) Has been cancelled
CI / deploy (push) Has been cancelled
feat: init
2026-03-17 04:07:44 -07:00

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"
];
}