# 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 = [ "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ "amdgpu" ]; boot.kernelModules = [ "kvm-intel" "radeon.si_support=0" "amdgpu.si_support=1" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/33a4619f-a37c-4ab8-a6ea-fdf612b45657"; fsType = "btrfs"; options = [ "subvol=@" "noatime" "nodiratime" "compress=zstd" ]; }; fileSystems."/storage" = { device = "/dev/disk/by-label/STORAGE"; fsType = "btrfs"; options = [ "subvol=@" "noatime" "nodiratime" "compress=zstd" ]; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/515E-CB13"; fsType = "vfat"; }; swapDevices = [ { device = "/dev/disk/by-uuid/764d7116-eba7-4404-b175-be756a7e53f6"; } ]; # 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.eno1.useDHCP = lib.mkDefault true; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }