setting up proxychains
This commit is contained in:
parent
ecef53edca
commit
a44d0443c5
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
AllowAgentForwarding = "no";
|
AllowAgentForwarding = "no";
|
||||||
AllowTcpForwarding = "no";
|
AllowTcpForwarding = lib.mkDefault "no";
|
||||||
ChallengeResponseAuthentication = "no";
|
ChallengeResponseAuthentication = "no";
|
||||||
ClientAliveCountMax = lib.mkDefault 2;
|
ClientAliveCountMax = lib.mkDefault 2;
|
||||||
Compression = "NO";
|
Compression = "NO";
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../users/richie/global/desktop.nix
|
../../users/richie/global/desktop.nix
|
||||||
|
../../users/richie/global/ssh.nix
|
||||||
../../users/richie/global/syncthing_base.nix
|
../../users/richie/global/syncthing_base.nix
|
||||||
../../users/richie/global/zerotier.nix
|
../../users/richie/global/zerotier.nix
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../../users/richie/global/ssh.nix
|
||||||
../../users/richie/global/zerotier.nix
|
../../users/richie/global/zerotier.nix
|
||||||
./docker
|
./docker
|
||||||
];
|
];
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../../users/richie/global/ssh.nix
|
||||||
../../users/richie/global/syncthing_base.nix
|
../../users/richie/global/syncthing_base.nix
|
||||||
../../users/richie/global/zerotier.nix
|
../../users/richie/global/zerotier.nix
|
||||||
./docker
|
./docker
|
||||||
|
1
users/richie/global/ssh.nix
Normal file
1
users/richie/global/ssh.nix
Normal file
@ -0,0 +1 @@
|
|||||||
|
{ services.openssh.settings.AllowTcpForwarding = "yes"; }
|
@ -16,8 +16,9 @@
|
|||||||
mediainfo
|
mediainfo
|
||||||
obs-studio
|
obs-studio
|
||||||
obsidian
|
obsidian
|
||||||
|
proxychains
|
||||||
sweet-nova
|
sweet-nova
|
||||||
vlc
|
|
||||||
util-linux
|
util-linux
|
||||||
|
vlc
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -8,18 +8,21 @@
|
|||||||
user = "richie";
|
user = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
identityFile = "~/.ssh/id_ed25519";
|
||||||
port = 629;
|
port = 629;
|
||||||
|
dynamicForwards = [ { port = 9050; } ];
|
||||||
};
|
};
|
||||||
jeevesjr = {
|
jeevesjr = {
|
||||||
hostname = "192.168.90.35";
|
hostname = "192.168.90.35";
|
||||||
user = "richie";
|
user = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
identityFile = "~/.ssh/id_ed25519";
|
||||||
port = 352;
|
port = 352;
|
||||||
|
dynamicForwards = [ { port = 9050; } ];
|
||||||
};
|
};
|
||||||
bob = {
|
bob = {
|
||||||
hostname = "192.168.90.25";
|
hostname = "192.168.90.25";
|
||||||
user = "richie";
|
user = "richie";
|
||||||
identityFile = "~/.ssh/id_ed25519";
|
identityFile = "~/.ssh/id_ed25519";
|
||||||
port = 262;
|
port = 262;
|
||||||
|
dynamicForwards = [ { port = 9050; } ];
|
||||||
};
|
};
|
||||||
rhapsody-in-green = {
|
rhapsody-in-green = {
|
||||||
hostname = "192.168.90.221";
|
hostname = "192.168.90.221";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user