Comment out generated configuration for now, best to just regenerate it
This commit is contained in:
parent
f6629260e1
commit
862456cfd5
|
@ -1,19 +1,24 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# BEGIN from generated hardware-configuration
|
||||
imports =
|
||||
[ <nixos/modules/hardware/network/broadcom-43xx.nix>
|
||||
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
||||
../lib/kernel-version.nix
|
||||
[ ../lib/kernel-version.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "rtsx_pci_sdmmc" ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
nix.maxJobs = 8;
|
||||
# END from generated hardware-configuration
|
||||
## BEGIN from generated hardware-configuration
|
||||
## Probably better to just use a freshly generated hardware.configuration.nix
|
||||
## than this, but including for reference.
|
||||
#imports =
|
||||
# [ <nixos/modules/hardware/network/broadcom-43xx.nix>
|
||||
# <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
||||
# ];
|
||||
#
|
||||
#boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "rtsx_pci_sdmmc" ];
|
||||
#boot.kernelModules = [ "kvm-intel" ];
|
||||
#boot.extraModulePackages = [ ];
|
||||
#
|
||||
#nix.maxJobs = 8;
|
||||
## END from generated hardware-configuration
|
||||
|
||||
# Use the gummiboot efi boot loader. (From default generated configuration.nix)
|
||||
boot.loader.gummiboot.enable = true;
|
||||
|
|
Loading…
Reference in a new issue