45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
|
|
# PLACEHOLDER -- hand-written, not machine-generated. Regenerate on the real
|
||
|
|
# T400 with `nixos-generate-config` and commit the result. The device labels
|
||
|
|
# below are guesses; replace them with the generated UUIDs (or label the
|
||
|
|
# partitions accordingly at install time).
|
||
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
modulesPath,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports = [
|
||
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||
|
|
];
|
||
|
|
|
||
|
|
boot.initrd.availableKernelModules = [
|
||
|
|
"ahci"
|
||
|
|
"ata_piix"
|
||
|
|
"ehci_pci"
|
||
|
|
"uhci_hcd"
|
||
|
|
"usb_storage"
|
||
|
|
"sd_mod"
|
||
|
|
"sr_mod"
|
||
|
|
];
|
||
|
|
boot.initrd.kernelModules = [ ];
|
||
|
|
boot.kernelModules = [ "kvm-intel" ];
|
||
|
|
boot.extraModulePackages = [ ];
|
||
|
|
|
||
|
|
# Label your root partition `nixos` at install, or replace with the generated UUID.
|
||
|
|
fileSystems."/" = {
|
||
|
|
device = "/dev/disk/by-label/nixos";
|
||
|
|
fsType = "ext4";
|
||
|
|
};
|
||
|
|
|
||
|
|
swapDevices = [
|
||
|
|
{ device = "/dev/disk/by-label/swap"; }
|
||
|
|
];
|
||
|
|
|
||
|
|
networking.useDHCP = lib.mkDefault true;
|
||
|
|
|
||
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
|
}
|