Skip to content

Commit

Permalink
home/librewolf: init
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodachi94 committed Jul 25, 2024
1 parent a95930c commit 98783a7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions home/common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
./h.nix
./helix.nix
./home-manager.nix
./librewolf.nix
./nheko.nix
./nixpkgs
./nnn.nix
Expand Down
17 changes: 17 additions & 0 deletions home/common/librewolf.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ pkgs, tomolib, config, ... }:
let
firejailWrappers = tomolib.firejailWrappers { inherit pkgs; };
in
{
programs.librewolf = {
enable = true;
package = firejailWrappers.librewolf;
settings = {
"webgl.disabled" = false;
};
};

home.sessionVariables = {
BROWSER = "${firejailWrappers.librewolf}/bin/librewolf";
};
}
5 changes: 0 additions & 5 deletions home/linux/desktop-standalone-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ in
home.packages = [
pkgs.lxqt.qps
pkgs.vscodium-fhs # GUI IDE
firejailWrappers.librewolf # Web browser
pkgs.zotero
];

home.sessionVariables = {
BROWSER = "${firejailWrappers.librewolf}/bin/librewolf";
};
}

0 comments on commit 98783a7

Please sign in to comment.