diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-11-02 23:10:44 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-11-02 23:10:44 +0100 |
commit | e23d7b6be16c9f57b4b96e885418c54d3098cb79 (patch) | |
tree | 67deed86eb7fba7458909794124e0ed0a9b82a97 /hardware | |
parent | dotfiles: nvim: run autoformatter async and install haskell formatter (diff) | |
download | nixos-config-e23d7b6be16c9f57b4b96e885418c54d3098cb79.tar.gz nixos-config-e23d7b6be16c9f57b4b96e885418c54d3098cb79.tar.bz2 nixos-config-e23d7b6be16c9f57b4b96e885418c54d3098cb79.zip |
Update
Diffstat (limited to 'hardware')
-rw-r--r-- | hardware/chromebook/hardware.nix | 2 | ||||
-rw-r--r-- | hardware/laptop/hardware.nix | 2 | ||||
-rw-r--r-- | hardware/pc/hardware.nix | 2 | ||||
-rw-r--r-- | hardware/thinkpad/hardware.nix | 2 | ||||
-rw-r--r-- | hardware/virtualbox/hardware.nix | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/hardware/chromebook/hardware.nix b/hardware/chromebook/hardware.nix index 712c1bc..e945c6d 100644 --- a/hardware/chromebook/hardware.nix +++ b/hardware/chromebook/hardware.nix @@ -40,7 +40,7 @@ in hardware = { cpu.intel.updateMicrocode = true; - opengl = { + graphics = { enable = true; extraPackages = with pkgs; [ intel-media-driver # LIBVA_DRIVER_NAME=iHD diff --git a/hardware/laptop/hardware.nix b/hardware/laptop/hardware.nix index d7d3ecc..bbd684b 100644 --- a/hardware/laptop/hardware.nix +++ b/hardware/laptop/hardware.nix @@ -39,7 +39,7 @@ in hardware = { cpu.intel.updateMicrocode = true; - opengl = { + graphics = { enable = true; }; diff --git a/hardware/pc/hardware.nix b/hardware/pc/hardware.nix index 3d3a8cc..b62a323 100644 --- a/hardware/pc/hardware.nix +++ b/hardware/pc/hardware.nix @@ -31,7 +31,7 @@ in hardware = { cpu.intel.updateMicrocode = true; - opengl = { + graphics = { enable = true; }; }; diff --git a/hardware/thinkpad/hardware.nix b/hardware/thinkpad/hardware.nix index a96b4f1..f3f3f5c 100644 --- a/hardware/thinkpad/hardware.nix +++ b/hardware/thinkpad/hardware.nix @@ -40,7 +40,7 @@ in hardware = { cpu.intel.updateMicrocode = true; - opengl = { + graphics = { enable = true; extraPackages = with pkgs; [ intel-media-driver # LIBVA_DRIVER_NAME=iHD diff --git a/hardware/virtualbox/hardware.nix b/hardware/virtualbox/hardware.nix index 21b8f42..b5ce8b7 100644 --- a/hardware/virtualbox/hardware.nix +++ b/hardware/virtualbox/hardware.nix @@ -22,7 +22,7 @@ }; hardware = { - opengl = { + graphics = { enable = true; }; }; |