Skip to content

Commit

Permalink
Stable
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRTitor committed Mar 5, 2024
1 parent 8773123 commit e824802
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,25 @@

# firefox, chrome from unstable are incompatible with stable
(google-chrome.override {
# enable video encoding and vulkan, along with several
# enable video encoding and hardware acceleration, along with several
# suitable for my configuration
# change it if you have any issues
# note the spaces, they are required
# Vulkan is not stable, likely because of drivers
commandLineArgs = ""
+ " --enable-accelerated-video-decode"
+ " --enable-accelerated-mjpeg-decode"
+ " --enable-gpu-compositing"
+ " --enable-gpu-rasterization" # dont enable in about:flags
+ " --enable-native-gpu-memory-buffers"
+ " --enable-raw-draw"
+ " --use-vulkan"
+ " --enable-zero-copy" # dont enable in about:flags
+ " --ignore-gpu-blocklist" # dont enable in about:flags
+ " --enable-features=VaapiVideoEncoder,CanvasOopRasterization"
# + " --use-vulkan"
+ " --enable-features="
+ "VaapiVideoEncoder,"
+ "CanvasOopRasterization,"
# + "Vulkan"
;
})
firefox-wayland
Expand Down

0 comments on commit e824802

Please sign in to comment.