From f4d38281e4d334093ebd87dabd07145a22b626da Mon Sep 17 00:00:00 2001 From: "matthew.binning" Date: Sun, 1 Mar 2026 16:35:17 -0800 Subject: [PATCH] feat: Add tor and tor-browser --- configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 092ef72..e108be3 100644 --- a/configuration.nix +++ b/configuration.nix @@ -32,6 +32,7 @@ rsync rustc tldr + tor # Tor anonymity network vscodium # Hyprland essentials @@ -135,20 +136,27 @@ brightnessctl # Brightness control pavucontrol # Audio control networkmanagerapplet # Network manager applet - + # File manager and utilities nautilus gnome-themes-extra - + # Additional tools libreoffice grub2_efi exfatprogs + tor-browser # Tor Browser ]; }; programs.firefox.enable = true; + # Enable Tor service + services.tor = { + enable = true; + client.enable = true; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;