Files
nixos-config/configs/browser.nix
2023-08-22 11:49:02 +02:00

14 lines
242 B
Nix

{ config, pkgs, lib, ... }:
let
unstable = import <nixos-unstable> { config.allowUnfree = true; };
in
{
environment.systemPackages = with unstable.pkgs; [
brave
chromium
firefox
librewolf
tor-browser-bundle-bin
];
}