2021-03-07 22:06:39 -05:00
|
|
|
|
# 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.
|
2022-12-27 10:10:53 -05:00
|
|
|
|
{ config, modulesPath, ... }:
|
2021-03-07 22:06:39 -05:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2023-09-10 14:27:05 -04:00
|
|
|
|
boot = {
|
|
|
|
|
initrd.availableKernelModules = [
|
|
|
|
|
"uhci_hcd"
|
|
|
|
|
"ehci_pci"
|
|
|
|
|
"ahci"
|
|
|
|
|
"xhci_pci"
|
|
|
|
|
"firewire_ohci"
|
|
|
|
|
"usb_storage"
|
|
|
|
|
"usbhid"
|
|
|
|
|
"sd_mod"
|
|
|
|
|
"sr_mod"
|
|
|
|
|
];
|
|
|
|
|
initrd.kernelModules = [ ];
|
2024-12-07 20:46:15 -05:00
|
|
|
|
kernelModules = [
|
|
|
|
|
"kvm-intel"
|
|
|
|
|
"wl"
|
|
|
|
|
];
|
2023-09-10 14:27:05 -04:00
|
|
|
|
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
|
|
|
};
|
2021-03-07 22:06:39 -05:00
|
|
|
|
|
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/ea3c68ac-e822-4b71-a8f5-65d9e452a3c2";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/FB06-AB48";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-07 20:46:15 -05:00
|
|
|
|
swapDevices = [ { device = "/dev/disk/by-uuid/3a812874-3def-4e46-b20d-cd55fa7bdd5f"; } ];
|
2021-03-07 22:06:39 -05:00
|
|
|
|
|
|
|
|
|
}
|