chore(etna): make config compatible with 23.11

This commit is contained in:
uku 2024-04-01 18:52:29 +02:00
parent 82a1bbebac
commit d9dd85b2d6
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
3 changed files with 15 additions and 15 deletions

View file

@ -695,16 +695,17 @@
"rust-overlay": "rust-overlay_3" "rust-overlay": "rust-overlay_3"
}, },
"locked": { "locked": {
"lastModified": 1711955820, "lastModified": 1704711240,
"narHash": "sha256-mRw9W25Jq3lNxN3qndMY9ofzGYR5XJAWxWY5iK2Fn5E=", "narHash": "sha256-nqRUBFpY9y3OPZme+YGt2i+A4hWeiKOEG0NcKVuW56c=",
"owner": "uku3lig", "owner": "uku3lig",
"repo": "ukubot-rs", "repo": "ukubot-rs",
"rev": "9ee3e457278028df0d346eac801a37c08373949c", "rev": "76df1dd3caaa64a2b74b03250448f4b4a554899a",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "uku3lig", "owner": "uku3lig",
"repo": "ukubot-rs", "repo": "ukubot-rs",
"rev": "76df1dd3caaa64a2b74b03250448f4b4a554899a",
"type": "github" "type": "github"
} }
}, },

View file

@ -63,7 +63,7 @@
}; };
ukubot-rs = { ukubot-rs = {
url = "github:uku3lig/ukubot-rs"; url = "github:uku3lig/ukubot-rs/76df1dd3caaa64a2b74b03250448f4b4a554899a";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts"; inputs.flake-parts.follows = "flake-parts";
}; };

View file

@ -68,18 +68,17 @@
enable = true; enable = true;
role = "client"; role = "client";
settings = { settings = {
serverAddr = "49.13.148.129"; common = {
serverPort = 7000; server_addr = "49.13.148.129";
server_port = 7000;
};
proxies = [ minecraft = {
{
name = "minecraft";
type = "tcp"; type = "tcp";
localIp = "127.0.0.1"; local_ip = "127.0.0.1";
localPort = 25565; local_port = 25565;
remotePort = 6000; remote_port = 6000;
} };
];
}; };
}; };