dot.nix/host/caenus/modules/frp/default.nix
Chris Toph 2042a0f11f Complete Merge of all Hosts
WIP but should should be mostly working
2024-09-22 01:07:26 -04:00

13 lines
No EOL
265 B
Nix

{
services.frp = {
enable = true;
role = "server";
settings = {
bindPort = 4040;
auth = {
method = "token";
token = builtins.readFile ./frp.token;
};
};
};
}