nixos-config/hosts/vm/hardware-configuration.nix

24 lines
494 B
Nix
Raw Normal View History

2023-05-19 11:42:43 +02:00
{ lib, modulesPath, ... }:
2023-05-01 12:30:21 +02:00
{
imports =
[
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{
2023-05-01 13:17:37 +02:00
2023-05-01 12:30:21 +02:00
# Replace with actual config
device = "/dev/sda";
fsType = "ext4";
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}