nixos/mihomo: fix option description

Changed files
+4 -4
nixos
modules
services
networking
+4 -4
nixos/modules/services/networking/mihomo.nix
···
in
{
options.services.mihomo = {
-
enable = lib.mkEnableOption "Mihomo, A rule-based proxy in Go.";
package = lib.mkPackageOption pkgs "mihomo" { };
···
description = ''
Local web interface to use.
-
You can also use the following website, just in case:
- metacubexd:
- https://d.metacubex.one
- https://metacubex.github.io/metacubexd
- https://metacubexd.pages.dev
- yacd:
- https://yacd.haishan.me
-
- clash-dashboard (buggy):
- https://clash.razord.top
'';
};
···
tunMode = lib.mkEnableOption ''
necessary permission for Mihomo's systemd service for TUN mode to function properly.
-
Keep in mind, that you still need to enable TUN mode manually in Mihomo's configuration.
'';
};
···
in
{
options.services.mihomo = {
+
enable = lib.mkEnableOption "Mihomo, A rule-based proxy in Go";
package = lib.mkPackageOption pkgs "mihomo" { };
···
description = ''
Local web interface to use.
+
You can also use the following website:
- metacubexd:
- https://d.metacubex.one
- https://metacubex.github.io/metacubexd
- https://metacubexd.pages.dev
- yacd:
- https://yacd.haishan.me
+
- clash-dashboard:
- https://clash.razord.top
'';
};
···
tunMode = lib.mkEnableOption ''
necessary permission for Mihomo's systemd service for TUN mode to function properly.
+
Keep in mind, that you still need to enable TUN mode manually in Mihomo's configuration
'';
};