aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/Apzu/hardware
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-04 22:16:25 +0100
committerene <ene@sils.li>2023-02-04 22:16:25 +0100
commita49d4ce07eb85c01c606e65b6dcfe9f2160773db (patch)
treed6176e9135de2ba0115b2dd1ffb8ed98cadebea1 /hosts/Apzu/hardware
parentFix: Used the correct syntax (diff)
downloadnixos-config-a49d4ce07eb85c01c606e65b6dcfe9f2160773db.zip
Feat: New host
I also changed the hostnames: IDOHVE -> Tiamat (laptop) -> Apzu
Diffstat (limited to '')
-rw-r--r--hosts/Apzu/hardware/cpu.nix4
-rw-r--r--hosts/Apzu/hardware/gpu.nix19
-rw-r--r--hosts/Apzu/hardware/hardware.nix (renamed from hosts/IDOHVE/hardware/hardware.nix)0
3 files changed, 23 insertions, 0 deletions
diff --git a/hosts/Apzu/hardware/cpu.nix b/hosts/Apzu/hardware/cpu.nix
new file mode 100644
index 00000000..6859f72a
--- /dev/null
+++ b/hosts/Apzu/hardware/cpu.nix
@@ -0,0 +1,4 @@
+{config, ...}: {
+ powerManagement.cpuFreqGovernor = "powersave";
+ hardware.cpu.intel.updateMicrocode = true; # Why not?
+}
diff --git a/hosts/Apzu/hardware/gpu.nix b/hosts/Apzu/hardware/gpu.nix
new file mode 100644
index 00000000..741e8882
--- /dev/null
+++ b/hosts/Apzu/hardware/gpu.nix
@@ -0,0 +1,19 @@
+{
+ config,
+ pkgs,
+ lib,
+ ...
+}: {
+ nixpkgs.config.packageOverrides = pkgs: {
+ vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
+ };
+ hardware.opengl = {
+ enable = true;
+ extraPackages = with pkgs; [
+ intel-media-driver # LIBVA_DRIVER_NAME=iHD
+ vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
+ vaapiVdpau
+ libvdpau-va-gl
+ ];
+ };
+}
diff --git a/hosts/IDOHVE/hardware/hardware.nix b/hosts/Apzu/hardware/hardware.nix
index c36b7062..c36b7062 100644
--- a/hosts/IDOHVE/hardware/hardware.nix
+++ b/hosts/Apzu/hardware/hardware.nix