diff --git a/hosts/Infini-STICK/default.nix b/hosts/Infini-STICK/default.nix index c09b19f..9d57189 100644 --- a/hosts/Infini-STICK/default.nix +++ b/hosts/Infini-STICK/default.nix @@ -10,6 +10,7 @@ (with hardware; [ sound gpu.amdgpu + gpu.intel laptop ]) @@ -19,7 +20,7 @@ ./hardware-configuration.nix ]; - networking.interfaces.wlp1s0.useDHCP = true; + networking.interfaces.wlp170s0.useDHCP = true; system.stateVersion = "21.11"; } diff --git a/hosts/Infini-STICK/hardware-configuration.nix b/hosts/Infini-STICK/hardware-configuration.nix index 4777bc7..ce9aae2 100644 --- a/hosts/Infini-STICK/hardware-configuration.nix +++ b/hosts/Infini-STICK/hardware-configuration.nix @@ -8,9 +8,9 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-amd" ]; + boot.kernelModules = [ "kvm-amd" "kvm-intel" ]; boot.extraModulePackages = [ ]; boot.kernelParams = [ "boot.shell_on_fail" ]; boot.supportedFilesystems = [ "btrfs" ]; @@ -26,5 +26,5 @@ fsType = "vfat"; }; - powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; }