{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/a26cdc8b-abc9-47cf-ad33-c81e56e56d22"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/C9B2-7254"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; fileSystems = { "/mnt/SSD" = { device = "/dev/disk/by-uuid/af5282f0-0e02-4532-902f-97509af70d11"; fsType = "ext4"; }; "/mnt/HDD" = { device = "/dev/disk/by-uuid/41e7ec41-2e43-4254-9f00-f4be98cddc6e"; fsType = "ext4"; }; }; swapDevices = [ { device = "/dev/disk/by-uuid/24ecde92-b41b-4e41-8ebc-950d321db477"; } ]; # 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..useDHCP`. networking.useDHCP = lib.mkDefault true; # networking.interfaces.enp42s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }