21 lines
553 B
Nix
21 lines
553 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
|
|
|
boot.initrd.availableKernelModules =
|
|
[ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ "v4l2loopback" ];
|
|
boot.extraModulePackages = with config.boot.kernelPackages;
|
|
[ v4l2loopback.out ];
|
|
|
|
fileSystems."/" = {
|
|
device = "NA";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|