# 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" "usb_storage" "usbhid" "sd_mod" "sdhci_pci"]; boot.initrd.kernelModules = []; boot.initrd.systemd.enable = true; boot.kernelModules = ["kvm-intel" "wl"]; boot.kernelParams = [ "acpi_backlight=video" "nouveau.config=NvClkMode=15" ]; boot.extraModulePackages = [config.boot.kernelPackages.broadcom_sta]; fileSystems."/" = { device = "/dev/disk/by-uuid/6062dfe3-6e70-4f30-aa45-e81933f116fb"; fsType = "btrfs"; options = ["subvol=@" "compress=zstd"]; }; boot.initrd.luks.devices."SSD".device = "/dev/disk/by-uuid/482cd1b5-2a22-42f3-a497-4b4d7006d2e3"; fileSystems."/nix" = { device = "/dev/disk/by-uuid/6062dfe3-6e70-4f30-aa45-e81933f116fb"; fsType = "btrfs"; options = ["subvol=@nix" "compress=zstd"]; }; fileSystems."/home" = { device = "/dev/disk/by-uuid/6062dfe3-6e70-4f30-aa45-e81933f116fb"; fsType = "btrfs"; options = ["subvol=@home" "compress=zstd"]; }; fileSystems."/persist" = { device = "/dev/disk/by-uuid/6062dfe3-6e70-4f30-aa45-e81933f116fb"; fsType = "btrfs"; options = ["subvol=@persist" "compress=zstd"]; neededForBoot = true; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/0D30-3CEE"; fsType = "vfat"; options = ["fmask=0022" "dmask=0022"]; }; swapDevices = []; # 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.enp4s0f0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }