From 9f81cf18d0fac6db133a7df5d6c12c63ee6c25fa Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 21 Oct 2019 14:58:25 +0200 Subject: Replace parts of T470s configuration with nixos-hardware --- system/settings/hardware/hidpi.nix | 9 --------- system/settings/hardware/intel-gpu.nix | 12 ++++-------- system/settings/hardware/laptop.nix | 4 ---- 3 files changed, 4 insertions(+), 21 deletions(-) delete mode 100644 system/settings/hardware/hidpi.nix (limited to 'system/settings/hardware') diff --git a/system/settings/hardware/hidpi.nix b/system/settings/hardware/hidpi.nix deleted file mode 100644 index 1f4644c5..00000000 --- a/system/settings/hardware/hidpi.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ config, pkgs, ... }: - -{ i18n = { - consoleFont = "ter-v24b"; - consolePackages = with pkgs; [ - terminus_font - ]; - }; -} diff --git a/system/settings/hardware/intel-gpu.nix b/system/settings/hardware/intel-gpu.nix index 81fd765e..95d27cc0 100644 --- a/system/settings/hardware/intel-gpu.nix +++ b/system/settings/hardware/intel-gpu.nix @@ -1,13 +1,9 @@ { config, pkgs, ... }: -{ hardware.opengl.extraPackages = with pkgs; [ - vaapiIntel - vaapiVdpau - libvdpau-va-gl - ]; +{ - boot.earlyVconsoleSetup = true; - boot.initrd.kernelModules = [ - "i915" + boot.kernelParams = [ + "i915.enable_guc=2" + "i915.fastboot=1" ]; } diff --git a/system/settings/hardware/laptop.nix b/system/settings/hardware/laptop.nix index f8f2979c..bb715408 100644 --- a/system/settings/hardware/laptop.nix +++ b/system/settings/hardware/laptop.nix @@ -1,9 +1,6 @@ { config, pkgs, lib, ... }: { boot.kernelModules = [ "coretemp" ]; - boot.extraModulePackages = with config.boot.kernelPackages; [ - x86_energy_perf_policy - ]; hardware = { bluetooth = { @@ -51,7 +48,6 @@ }; services.tlp = { - enable = true; extraConfig = '' CPU_SCALING_GOVERNOR_ON_BAT=powersave ENERGY_PERF_POLICY_ON_BAT="balance_power" -- cgit 1.4.1