lab-infra/machines/photo01/_hardware-configuration.nix

26 lines
486 B
Nix
Raw Normal View History

2024-11-21 18:39:34 +01:00
{ lib, modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
2024-11-21 18:43:16 +01:00
boot = {
loader.systemd-boot.enable = true;
initrd.kernelModules = [ ];
kernelModules = [ ];
extraModulePackages = [ ];
initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"virtio_pci"
"virtio_scsi"
"sd_mod"
"sr_mod"
];
2024-11-21 18:43:16 +01:00
};
2024-11-21 18:39:34 +01:00
networking.useDHCP = lib.mkDefault false;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}