# 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, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; # boot.initrd.kernelModules = [ "hid_generic" ]; # boot.kernelParams =[ "usbhid.quirks=0x2f81:0x2608:0x0040" ]; # first try # boot.kernelParams =[ "usbhid.quirks=0x2f81:0x2608:0x20000000" ]; # second try fileSystems."/" = { device = "/dev/disk/by-uuid/efee3abd-63ef-4f13-ae33-7ab98149ffe3"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/E39C-35A3"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; swapDevices = [ { device = "/dev/disk/by-uuid/0d40d7d9-32c0-4138-be3c-7c2f4394df66"; } ]; # 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.docker0.useDHCP = lib.mkDefault true; # networking.interfaces.eno1.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }