mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
15 lines
498 B
Nix
15 lines
498 B
Nix
# 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
|
|
];
|
|
}
|