vps6: fix xlog proxy

This commit is contained in:
陈浩南 2023-10-21 15:35:14 +08:00
parent 4a56408a7a
commit 5645c3d1bd
2 changed files with 3 additions and 5 deletions

View File

@ -295,7 +295,7 @@
"nix-store.chn.moe" = { upstream = "internal.pc.chn.moe:443"; rewriteHttps = true; }; "nix-store.chn.moe" = { upstream = "internal.pc.chn.moe:443"; rewriteHttps = true; };
"anchor.fm" = { upstream = "anchor.fm:443"; rewriteHttps = true; }; "anchor.fm" = { upstream = "anchor.fm:443"; rewriteHttps = true; };
"podcasters.spotify.com" = { upstream = "podcasters.spotify.com:443"; rewriteHttps = true; }; "podcasters.spotify.com" = { upstream = "podcasters.spotify.com:443"; rewriteHttps = true; };
"xlog.chn.moe" = { upstream = "xlog.chn.moe:443"; rewriteHttps = true; }; "xlog.chn.moe" = { upstream = "cname.xlog.app:443"; rewriteHttps = true; };
}; };
}; };
applications = applications =

View File

@ -46,10 +46,8 @@ inputs:
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
}; };
# xmunet use old encryption # xmunet use old encryption
xmunet.nixpkgs.config.packageOverrides = pkgs: xmunet.nixpkgs.config.packageOverrides = pkgs: { wpa_supplicant = pkgs.wpa_supplicant.overrideAttrs
{ (attrs: { patches = attrs.patches ++ [ ./xmunet.patch ];}); };
wpa_supplicant = pkgs.wpa_supplicant.overrideAttrs (attrs: { patches = attrs.patches ++ [ ./xmunet.patch ];});
};
suspend-hibernate-waydroid.systemd.services = suspend-hibernate-waydroid.systemd.services =
let let
systemctl = "${inputs.pkgs.systemd}/bin/systemctl"; systemctl = "${inputs.pkgs.systemd}/bin/systemctl";