desktop-2024-10-23-12-15-26

This commit is contained in:
Alexander Szczepanski
2024-10-23 12:15:26 +02:00
parent 7f21ad2dc1
commit f702250342
6 changed files with 98 additions and 76 deletions

View File

@ -1,9 +1,15 @@
{ config, pkgs, lib, ... }:
{
environment.systemPackages = [
pkgs.brave
pkgs.firefox
pkgs.librewolf
pkgs.tor-browser-bundle-bin
programs.firefox = {
enable = true;
nativeMessagingHosts.packages = with pkgs; [ uget-integrator ];
};
environment.systemPackages = with pkgs; [
uget
brave
# firefox
librewolf
tor-browser-bundle-bin
];
}