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, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# BEGIN from generated hardware-configuration
|
|
||||||
imports =
|
imports =
|
||||||
[ <nixos/modules/hardware/network/broadcom-43xx.nix>
|
[ ../lib/kernel-version.nix
|
||||||
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
|
||||||
../lib/kernel-version.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "rtsx_pci_sdmmc" ];
|
## BEGIN from generated hardware-configuration
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
## Probably better to just use a freshly generated hardware.configuration.nix
|
||||||
boot.extraModulePackages = [ ];
|
## than this, but including for reference.
|
||||||
|
#imports =
|
||||||
nix.maxJobs = 8;
|
# [ <nixos/modules/hardware/network/broadcom-43xx.nix>
|
||||||
# END from generated hardware-configuration
|
# <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)
|
# Use the gummiboot efi boot loader. (From default generated configuration.nix)
|
||||||
boot.loader.gummiboot.enable = true;
|
boot.loader.gummiboot.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue