diff options
author | sefidel <contact@sefidel.net> | 2024-07-07 14:24:20 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-07-07 14:24:20 +0900 |
commit | d4544fe54e87a0ba8225c4c33a209e54a6ea6bc5 (patch) | |
tree | 699323bffa5e361e2ab55f98304c02a52755d1bd /nixos/haruka/configuration.nix | |
parent | e53c5e64e1eac1a69d7f2f2e991f7fe98f8e7b53 (diff) | |
download | nixrc-d4544fe54e87a0ba8225c4c33a209e54a6ea6bc5.tar.gz nixrc-d4544fe54e87a0ba8225c4c33a209e54a6ea6bc5.zip |
chore(nixos): hardware.opengl -> hardware.graphics
* This option has been renamed.
Diffstat (limited to 'nixos/haruka/configuration.nix')
-rw-r--r-- | nixos/haruka/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/haruka/configuration.nix b/nixos/haruka/configuration.nix index a4e294e..3e803cd 100644 --- a/nixos/haruka/configuration.nix +++ b/nixos/haruka/configuration.nix @@ -349,8 +349,8 @@ zsh.enableCompletion = true; }; - hardware.opengl.enable = true; - hardware.opengl.extraPackages = with pkgs; [ vaapiVdpau libvdpau-va-gl ]; + hardware.graphics.enable = true; + hardware.graphics.extraPackages = with pkgs; [ vaapiVdpau libvdpau-va-gl ]; xdg.portal = { enable = true; |