# 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" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/mapper/root"; fsType = "btrfs"; options = [ "subvol=root@nix" ]; }; boot.initrd.luks.devices."root".device = "/dev/disk/by-uuid/8e9f6249-65c4-415a-a82f-321215024956"; fileSystems."/swap" = { device = "/dev/mapper/root"; fsType = "btrfs"; options = [ "subvol=@swap" ]; }; fileSystems."/media" = { device = "/dev/mapper/root"; fsType = "btrfs"; options = [ "subvol=@media" ]; }; fileSystems."/nix" = { device = "/dev/mapper/root"; fsType = "btrfs"; options = [ "subvol=@nix" ]; }; fileSystems."/home" = { device = "/dev/mapper/root"; fsType = "btrfs"; options = [ "subvol=@home" ]; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/E89A-EECA"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }