# Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. { config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "r8169" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "size=10G" "mode=755" ]; }; fileSystems."/home/leah" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "size=2G" "mode=777" ]; }; fileSystems."/nix" = { device = "/dev/disk/by-uuid/96c415eb-b423-4621-b170-ba1b4380dede"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/56D5-115E"; fsType = "vfat"; }; boot.initrd.luks.devices."nix-store".device = "/dev/disk/by-uuid/d1e0568c-042a-4e76-8901-30bcb9fb8efb"; swapDevices = [ ]; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }