1

Compare commits

..

2 Commits

3 changed files with 13 additions and 1 deletions

View File

@ -922,10 +922,17 @@ in
serverAliveInterval = 60; serverAliveInterval = 60;
localForwards = [ localForwards = [
{ {
# Resultbrowser
bind.port = 22941; bind.port = 22941;
host.address = "127.0.0.1"; host.address = "127.0.0.1";
host.port = 22941; host.port = 22941;
} }
{
# Mysql
bind.port = 3306;
host.address = "127.0.0.1";
host.port = 3306;
}
]; ];
}; };
}; };

View File

@ -121,7 +121,7 @@
# jetbrains.rider # jetbrains.rider
zed-editor zed-editor
vscode vscode
ghidra # launch with _JAVA_AWT_WM_NONREPARENTING=1 # ghidra # launch with _JAVA_AWT_WM_NONREPARENTING=1 (use programs.ghidra)
# Unity Stuff # Unity Stuff
# unityhub # unityhub

View File

@ -197,6 +197,11 @@
enable = true; enable = true;
openFirewall = true; # Directly set port in firewall openFirewall = true; # Directly set port in firewall
}; };
ghidra = {
enable = true;
gdb = true;
};
}; };
services = { services = {