about summary refs log tree commit diff stats
path: root/hosts/Apzu
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hosts/Apzu/configuration.nix (renamed from hosts/IDOHVE/configuration.nix)0
-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
-rw-r--r--hosts/Apzu/networking.nix (renamed from hosts/IDOHVE/networking.nix)2
5 files changed, 24 insertions, 1 deletions
diff --git a/hosts/IDOHVE/configuration.nix b/hosts/Apzu/configuration.nix
index e42cb05f..e42cb05f 100644
--- a/hosts/IDOHVE/configuration.nix
+++ b/hosts/Apzu/configuration.nix
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
diff --git a/hosts/IDOHVE/networking.nix b/hosts/Apzu/networking.nix
index 5d5f194a..17f7c356 100644
--- a/hosts/IDOHVE/networking.nix
+++ b/hosts/Apzu/networking.nix
@@ -10,5 +10,5 @@
   networking.useDHCP = lib.mkDefault true;
   # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
   # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
-  networking.hostName = "IDOHVE";
+  networking.hostName = "Apzu";
 }