feat: Add tor and tor-browser

This commit is contained in:
matthew.binning 2026-03-01 16:35:17 -08:00
parent 5389416a6c
commit f4d38281e4

View file

@ -32,6 +32,7 @@
rsync rsync
rustc rustc
tldr tldr
tor # Tor anonymity network
vscodium vscodium
# Hyprland essentials # Hyprland essentials
@ -144,11 +145,18 @@
libreoffice libreoffice
grub2_efi grub2_efi
exfatprogs exfatprogs
tor-browser # Tor Browser
]; ];
}; };
programs.firefox.enable = true; programs.firefox.enable = true;
# Enable Tor service
services.tor = {
enable = true;
client.enable = true;
};
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;