2024-02-25 21:38:49 -09: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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
2024-05-28 13:03:44 -08:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
2024-02-25 21:38:49 -09:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" "wl" ];
|
|
|
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2024-05-28 13:03:44 -08:00
|
|
|
|
{ device = "/dev/disk/by-uuid/3ef81aad-67a6-412d-ae17-a60d14159c97";
|
2024-02-25 21:38:49 -09:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2024-05-28 13:03:44 -08:00
|
|
|
|
{ device = "/dev/disk/by-uuid/FBB5-2030";
|
2024-02-25 21:38:49 -09:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices =
|
2024-05-28 13:03:44 -08:00
|
|
|
|
[ { device = "/dev/disk/by-uuid/c435e39b-ff4d-4cb9-b09f-cc1ff448761e"; }
|
2024-02-25 21:38:49 -09:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
2024-05-28 13:03:44 -08:00
|
|
|
|
# networking.interfaces.enp0s20u1.useDHCP = lib.mkDefault true;
|
2024-02-25 21:38:49 -09:00
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|