zaphod: Add proxychains

This commit is contained in:
The Hedgehog 2023-01-05 08:50:34 -05:00
parent cc932f1edf
commit 5156d38514
Signed by: thehedgehog
GPG key ID: 8CDF3F7CAA53A0F5
3 changed files with 16 additions and 0 deletions

View file

@ -36,6 +36,7 @@
./programs/less.nix
./programs/misc.nix
./programs/neovim.nix
./programs/proxychains.nix
./programs/ssh.nix
./programs/sway.nix
./programs/zsh.nix

View file

@ -4,6 +4,7 @@
...
}: {
environment.systemPackages = with pkgs; [
inputs.espanso-nixpkgs.legacyPackages.x86_64-linux.espanso
dig
distrobox
inputs.agenix.defaultPackage."${system}"
@ -13,6 +14,7 @@
networkmanagerapplet
pipewire.jack
pulseaudio
proxychains-ng
steam-run
steam-run-native
wineWowPackages.waylandFull

View file

@ -0,0 +1,13 @@
{pkgs, config, ...}: {
programs.proxychains = {
enable = true;
proxies = {
ssh = {
enable = true;
type = "socks5";
host = "127.0.0.1";
port = 9999;
};
};
};
}