flake/nixos/networking/proxy.nix

31 lines
922 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ pkgs, config, ... }:
{
networking.proxy.default = "http://127.0.0.1:7890/";
2023-09-19 00:17:43 +00:00
#environment.systemPackages = with pkgs; [ clash-meta ];
2023-09-19 00:17:43 +00:00
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 ];
2023-09-19 00:17:43 +00:00
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"
];
2023-09-19 00:17:43 +00:00
};
};
2023-09-27 04:05:53 +00:00
environment.etc."clash-meta/metacubexd".source = ../../users/guanranwang/home-manager/common/dotfiles/config/clash/metacubexd;
2023-09-19 00:17:43 +00:00
}