From ee6531b01c00bd728b00a181ac90d102def5e23d Mon Sep 17 00:00:00 2001 From: dadada Date: Wed, 18 Oct 2023 16:05:24 +0200 Subject: [PATCH] Enable tor for remote admin on fginfo --- home/home/pkgs.nix | 1 + nixos/gorgon/configuration.nix | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/home/home/pkgs.nix b/home/home/pkgs.nix index c04f127..020e1e9 100644 --- a/home/home/pkgs.nix +++ b/home/home/pkgs.nix @@ -117,6 +117,7 @@ with pkgs; [ silver-searcher skim # fzf in Rust slurp + socat spotify sqlite sshfs-fuse diff --git a/nixos/gorgon/configuration.nix b/nixos/gorgon/configuration.nix index b020aa3..e5e66be 100644 --- a/nixos/gorgon/configuration.nix +++ b/nixos/gorgon/configuration.nix @@ -90,6 +90,11 @@ in services.avahi.enable = true; + services.tor = { + enable = true; + client.enable = true; + }; + services.paperless = { enable = true; passwordFile = config.age.secrets.paperless.path;