diff --git a/home/panotaka/common/optional/coding/vscode/completion/copilot.nix b/home/panotaka/common/optional/coding/vscode/completion/copilot.nix index b833c72..cb5fc86 100644 --- a/home/panotaka/common/optional/coding/vscode/completion/copilot.nix +++ b/home/panotaka/common/optional/coding/vscode/completion/copilot.nix @@ -8,7 +8,9 @@ # Enable Copilot Next Edit Suggestions "github.copilot.nextEditSuggestions.enabled" = true; # Other useful Copilot settings - "github.copilot.enable" = true; + "github.copilot.enable" = { + "*" = true; + }; "github.copilot.inlineSuggest.enable" = true; "github.copilot.advanced" = { "inlineSuggest.enableAutoTrigger" = true; diff --git a/home/panotaka/common/optional/coding/vscode/default.nix b/home/panotaka/common/optional/coding/vscode/default.nix index f0872bb..c2650ce 100644 --- a/home/panotaka/common/optional/coding/vscode/default.nix +++ b/home/panotaka/common/optional/coding/vscode/default.nix @@ -25,7 +25,6 @@ "usernamehw.errorlens" # --- Output & Visualization --- "ibm.output-colorizer" - "nobuhito.printcode" "pnp.polacode" # --- Git --- "lamartire.git-indicators" diff --git a/hosts/common/optional/thermal-management.nix b/hosts/common/optional/thermal-management.nix index 6bd5cb8..0b34c41 100644 --- a/hosts/common/optional/thermal-management.nix +++ b/hosts/common/optional/thermal-management.nix @@ -8,8 +8,8 @@ CPU_DRIVER_OPMODE_ON_AC = "active"; CPU_DRIVER_OPMODE_ON_BAT = "active"; - # Use 'powersave' governor, which, with intel_pstate in active mode, allows HWP to manage frequencies efficiently - CPU_SCALING_GOVERNOR_ON_AC = "powersave"; + # Use 'performance' governor for max performance on AC + CPU_SCALING_GOVERNOR_ON_AC = "performance"; CPU_SCALING_GOVERNOR_ON_BAT = "powersave"; # Set Energy Performance Preference (EPP) to balance performance on AC and favor power savings on battery @@ -31,15 +31,15 @@ CPU_HWP_DYN_BOOST_ON_BAT = 1; # Set platform profile to 'performance' on AC and 'low-power' on battery, if supported by the system - PLATFORM_PROFILE_ON_AC = "balanced"; + PLATFORM_PROFILE_ON_AC = "performance"; PLATFORM_PROFILE_ON_BAT = "low-power"; # Enable Wi-Fi power saving on both AC and battery WIFI_PWR_ON_AC = "on"; WIFI_PWR_ON_BAT = "on"; - # Configure PCIe Active State Power Management: default on AC, aggressive power saving on battery - PCIE_ASPM_ON_AC = "default"; + # Configure PCIe Active State Power Management: 'performance' on AC, aggressive power saving on battery + PCIE_ASPM_ON_AC = "performance"; PCIE_ASPM_ON_BAT = "powersupersave"; # Enable runtime power management for PCIe devices: 'on' for AC, 'auto' for battery diff --git a/hosts/nixos/Bellerophon/hardware-configuration.nix b/hosts/nixos/Bellerophon/hardware-configuration.nix index 2ae5e4f..4653ed4 100644 --- a/hosts/nixos/Bellerophon/hardware-configuration.nix +++ b/hosts/nixos/Bellerophon/hardware-configuration.nix @@ -14,7 +14,6 @@ boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "vmd" "nvme" "usbhid"]; boot.initrd.kernelModules = []; - boot.kernelPackages = pkgs.linuxPackages_zen; boot.kernelModules = ["kvm-intel"]; boot.kernelPatches = [ /*