flake/darwin/profiles/common/opt-in/clash-meta-client.nix

15 lines
273 B
Nix
Raw Normal View History

{
inputs,
pkgs,
...
2024-01-03 15:30:30 +00:00
}: {
services.clash = {
enable = true;
package = pkgs.clash-meta;
webui = inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.metacubexd;
2023-10-09 06:52:33 +00:00
};
2024-01-03 15:30:30 +00:00
### System proxy settings
networking.proxy.default = "http://127.0.0.1:7890/";
}