2024-01-18 12:45:27 -07:00
|
|
|
{ config, lib, modulesPath, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
2024-01-25 18:22:36 -07:00
|
|
|
[
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2024-01-18 12:45:27 -07:00
|
|
|
];
|
|
|
|
|
2024-01-25 18:22:36 -07:00
|
|
|
boot = {
|
|
|
|
initrd = {
|
|
|
|
availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "usb_storage" "ums_realtek" "sd_mod" ];
|
|
|
|
kernelModules = [ ];
|
|
|
|
};
|
|
|
|
kernelModules = [ ];
|
|
|
|
extraModulePackages = [ ];
|
|
|
|
};
|
2024-01-18 12:45:27 -07:00
|
|
|
|
|
|
|
fileSystems."/" =
|
2024-01-25 18:22:36 -07:00
|
|
|
{
|
|
|
|
device = "/dev/disk/by-uuid/d97f80ac-63fe-43d3-a3f5-3c385a41a068";
|
2024-01-18 12:45:27 -07:00
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
swapDevices =
|
2024-01-25 18:22:36 -07:00
|
|
|
[{ device = "/dev/disk/by-uuid/b70a6cac-996e-4a05-a3d0-17c7acf90f08"; }];
|
2024-01-18 12:45:27 -07:00
|
|
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
2024-01-31 18:23:14 -07:00
|
|
|
hardware = {
|
|
|
|
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
bluetooth.enable = true;
|
|
|
|
};
|
2024-01-18 12:45:27 -07:00
|
|
|
}
|