Skip to content

Commit

Permalink
fix(nixos): Enable WebGL in Librewolf
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Nov 19, 2023
1 parent d9d9e70 commit 8984887
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ in {
xcodes
] ++ lib.lists.optionals isLinux [
# put Linux specific packages here
librewolf
signal-desktop
qbittorrent
vlc
Expand Down Expand Up @@ -85,6 +84,7 @@ in {
./modules/git.nix
./modules/ssh.nix
./modules/wezterm.nix
./modules/librewolf.nix
./modules/gnome/default.nix
];
programs = {
Expand Down
6 changes: 6 additions & 0 deletions home-manager/modules/librewolf.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
programs.librewolf = {
enable = true;
settings = { "webgl.disabled" = false; }; # enable WebGL
};
}

0 comments on commit 8984887

Please sign in to comment.