browser: separated into new file

This commit is contained in:
2026-05-17 10:11:52 +02:00
parent 52346aa1e8
commit 8ad5082fd0
3 changed files with 15 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
# configuration for main browser is in ../home-manager/librewolf.nix
# configuration for qutebrowser is in ../home-manager/vivify.nix
{
pkgs,
pkgs-unstable,
...
}:
{
environment.systemPackages = with pkgs; [
chromium # used only to flash the firmware on my framework laptop 16 (keyboard.frame.work) as only chromium based browser support webHID.
pkgs-unstable.tor-browser
(pkgs.callPackage ../../modules/scripts/librewolfprofiles.nix {}) # fzf librewolf profile selector
];
}