7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options.programs.clash-verge = {
|
|
enable = lib.mkEnableOption "Clash Verge";
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
description = ''
|
|
The clash-verge package to use. Available options are
|
|
clash-verge-rev and clash-nyanpasu, both are forks of
|
|
the original clash-verge project.
|
|
'';
|
|
example = "pkgs.clash-verge-rev";
|
|
};
|
|
autoStart = lib.mkEnableOption "Clash Verge auto launch";
|
|
tunMode = lib.mkEnableOption "Clash Verge TUN mode";
|
|
};
|
|
|
|
config =
|
|
let
|
|
cfg = config.programs.clash-verge;
|
|
in
|
|
lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [
|
|
cfg.package
|
|
(lib.mkIf cfg.autoStart (
|
|
pkgs.makeAutostartItem {
|
|
name = "clash-verge";
|
|
package = cfg.package;
|
|
}
|
|
))
|
|
];
|
|
|
|
security.wrappers.clash-verge = lib.mkIf cfg.tunMode {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_net_bind_service,cap_net_admin=+ep";
|
|
source = "${lib.getExe cfg.package}";
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ zendo ];
|
|
}
|