diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-23 23:08:05 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-23 23:08:05 +0200 |
commit | 4c903d620ca477b7fa40e54c406bde5e13431518 (patch) | |
tree | 6e3694ec485e2b162f9193d2554e655ea99328e9 /hosts | |
parent | ZSH: Install plugins deterministically (diff) | |
download | nixos-config-4c903d620ca477b7fa40e54c406bde5e13431518.tar.gz nixos-config-4c903d620ca477b7fa40e54c406bde5e13431518.tar.bz2 nixos-config-4c903d620ca477b7fa40e54c406bde5e13431518.zip |
Fix hardware acceleration in firefox
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/home.nix | 1 | ||||
-rw-r--r-- | hosts/luna/home.nix | 1 | ||||
-rw-r--r-- | hosts/phobos/home.nix | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 783584d..138a4d3 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -123,6 +123,7 @@ in darkreader https-everywhere bypass-paywalls-clean + h264ify ]; profiles.default = { id = 0; diff --git a/hosts/luna/home.nix b/hosts/luna/home.nix index 5e54c33..8f90ae5 100644 --- a/hosts/luna/home.nix +++ b/hosts/luna/home.nix @@ -18,6 +18,7 @@ in ]); programs.firefox.profiles.default.settings = { + "gfx.webrender.all" = true; "media.ffmpeg.vaapi.enabled" = true; #Hardware acceleration }; diff --git a/hosts/phobos/home.nix b/hosts/phobos/home.nix index 8ab2d90..f424a0b 100644 --- a/hosts/phobos/home.nix +++ b/hosts/phobos/home.nix @@ -18,6 +18,7 @@ in ]); programs.firefox.profiles.default.settings = { + "gfx.webrender.all" = true; "media.ffmpeg.vaapi.enabled" = true; #Hardware acceleration }; |