dotfiles/home/common/web.nix

23 lines
297 B
Nix
Raw Permalink Normal View History

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