From 7cb65a13acd402847706c478c8189274ee7bff81 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 6 May 2024 16:58:45 +0300 Subject: [PATCH] host/asus: add tor-browser --- hosts/asus-gl553vd/configuration.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/asus-gl553vd/configuration.nix b/hosts/asus-gl553vd/configuration.nix index efa5a8d..71b3c6f 100644 --- a/hosts/asus-gl553vd/configuration.nix +++ b/hosts/asus-gl553vd/configuration.nix @@ -1,4 +1,4 @@ -{ ... }: +{ globalData, ... }: { imports = [ @@ -16,4 +16,16 @@ # Torrent # services.transmission.enable = true; + + ################################################################################ + # Programs + ################################################################################ + local.programs.browsers.tor-browser = { + enable = true; + container = { + enable = true; + externalInterface = "wg0"; + sshAuthorizedKeys = globalData.publicKeys.users.jan; + }; + }; }