configuration.nix/hosts/rico2/services/frpc.nix

20 lines
370 B
Nix
Raw Normal View History

2024-01-04 21:51:16 +05:30
{ secrets, ... }: {
2023-10-08 17:46:11 +05:30
services.frp = {
2023-05-27 21:12:16 +05:30
enable = true;
2023-10-08 17:46:11 +05:30
role = "client";
settings = {
"common" = {
2024-01-04 21:51:16 +05:30
inherit (secrets.frp_config) server_addr token;
2023-10-08 17:46:11 +05:30
server_port = 7000;
authentication_method = "token";
};
2023-05-27 21:12:16 +05:30
2023-10-08 17:46:11 +05:30
"ssh.rico2" = {
type = "tcp";
local_port = 22;
remote_port = 6002;
};
};
};
2023-05-27 21:12:16 +05:30
}