dotfiles/home/common/web.nix

23 lines
297 B
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{
config,
lib,
pkgs,
...
}:
{
config = lib.mkIf config.shelman.desktop.enable {
home.packages = with pkgs; [ tor-browser ];
programs.firefox = {
enable = true;
};
programs.chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
};
};
}