41 lines
975 B
Nix
41 lines
975 B
Nix
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||
# and may be overwritten by future invocations. Please make changes
|
||
# to /etc/nixos/configuration.nix instead.
|
||
{ config, modulesPath, ... }:
|
||
|
||
{
|
||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||
boot = {
|
||
initrd.availableKernelModules = [
|
||
"uhci_hcd"
|
||
"ehci_pci"
|
||
"ahci"
|
||
"xhci_pci"
|
||
"firewire_ohci"
|
||
"usb_storage"
|
||
"usbhid"
|
||
"sd_mod"
|
||
"sr_mod"
|
||
];
|
||
initrd.kernelModules = [ ];
|
||
kernelModules = [
|
||
"kvm-intel"
|
||
"wl"
|
||
];
|
||
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
||
};
|
||
|
||
fileSystems."/" = {
|
||
device = "/dev/disk/by-uuid/ea3c68ac-e822-4b71-a8f5-65d9e452a3c2";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
fileSystems."/boot" = {
|
||
device = "/dev/disk/by-uuid/FB06-AB48";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
swapDevices = [ { device = "/dev/disk/by-uuid/3a812874-3def-4e46-b20d-cd55fa7bdd5f"; } ];
|
||
|
||
}
|