flake/darwin/profiles/common/opt-in/clash-meta-client.nix
2024-01-17 19:53:00 +08:00

14 lines
273 B
Nix

{
inputs,
pkgs,
...
}: {
services.clash = {
enable = true;
package = pkgs.clash-meta;
webui = inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.metacubexd;
};
### System proxy settings
networking.proxy.default = "http://127.0.0.1:7890/";
}