nix-config/hosts/laptop/hardware-configuration.nix

48 lines
853 B
Nix
Raw Normal View History

{
config,
lib,
modulesPath,
...
}:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
initrd = {
luks.devices."root".device = "/dev/disk/by-label/nixos-luks";
availableKernelModules = [
"nvme"
"xhci_pci"
"usb_storage"
"sd_mod"
];
kernelModules = [ ];
};
kernelModules = [ "kvm-amd" ];
extraModulePackages = [ ];
};
fileSystems = {
"/" = {
device = "/dev/disk/by-label/nixos";
fsType = "btrfs";
};
2023-05-09 06:35:14 +02:00
"/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
};
2023-05-09 06:35:14 +02:00
swapDevices = [ ];
2023-05-09 06:35:14 +02:00
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}