{ config, lib, modulesPath, ... }: { imports = [(modulesPath + "/installer/scan/not-detected.nix")]; boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "xhci_pci_renesas" "usbhid" "sd_mod"]; boot.initrd.kernelModules = []; boot.kernelModules = []; boot.extraModulePackages = []; fileSystems."/" = { device = "/dev/disk/by-uuid/649b9c36-dd13-4cb7-9561-dff01fa3641b"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/8865-CA84"; fsType = "vfat"; options = ["fmask=0077" "dmask=0077"]; }; fileSystems."/mnt/backup" = { device = "/dev/disk/by-uuid/ec387aee-c588-4e84-9ddc-3be935c43257"; fsType = "ext4"; options = [ "defaults" "noatime" "nofail" "noauto" "x-systemd.automount" "x-systemd.idle-timeout=600" ]; }; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; swapDevices = [ { device = "/var/lib/swapfile"; size = 32 * 1024; } ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }