flake/nixos/networking/proxy.nix
Guanran Wang 84bfa9817a
networking: modify proxy configurations
- removed `environment.systemPackages = with pkgs; [ clash-meta ];`,
  as I found it isn't nessessary...
- use same environment variables on different platforms and alias
2023-10-10 17:05:33 +08:00

31 lines
No EOL
922 B
Nix

{ pkgs, config, ... }:
{
networking.proxy.default = "http://127.0.0.1:7890/";
#environment.systemPackages = with pkgs; [ clash-meta ];
systemd.services."clash-meta" = {
wantedBy = [ "multi-user.target" ];
after = [ "network-online.target" ];
description = "Clash.Meta Daemon";
serviceConfig = {
Type = "simple";
WorkingDirectory = "/etc/clash-meta";
User = [ config.users.users."clash-meta".name ];
ExecStart = "${pkgs.clash-meta}/bin/clash-meta -d /etc/clash-meta";
Restart = "on-failure";
CapabilityBoundingSet = [
"CAP_NET_RAW"
"CAP_NET_ADMIN"
"CAP_NET_BIND_SERVICE"
];
AmbientCapabilities = [
"CAP_NET_RAW"
"CAP_NET_ADMIN"
"CAP_NET_BIND_SERVICE"
];
};
};
environment.etc."clash-meta/metacubexd".source = ../../users/guanranwang/home-manager/common/dotfiles/config/clash/metacubexd;
}