diff --git a/hardening/bwraps/wechat.nix b/hardening/bwraps/wechat.nix index 63f5a4cd..27d7a72b 100644 --- a/hardening/bwraps/wechat.nix +++ b/hardening/bwraps/wechat.nix @@ -16,17 +16,19 @@ let # https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/by-name/we/wechat/package.nix sources = { aarch64-linux = { - version = "4.0.1.11"; + version = "4.1.0.13"; src = fetchurl { - url = "https://web.archive.org/web/20250512112413if_/https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_arm64.AppImage"; - hash = "sha256-Rg+FWNgOPC02ILUskQqQmlz1qNb9AMdvLcRWv7NQhGk="; + # url = "https://web.archive.org/web/20251209092116if_/https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_arm64.AppImage"; + url = "https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_arm64.AppImage"; + hash = "sha256-/d5crM6IGd0k0fSlBSQx4TpIVX/8iib+an0VMkWMNdw="; }; }; x86_64-linux = { - version = "4.0.1.11"; + version = "4.1.0.13"; src = fetchurl { - url = "https://web.archive.org/web/20250512110825if_/https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_x86_64.AppImage"; - hash = "sha256-gBWcNQ1o1AZfNsmu1Vi1Kilqv3YbR+wqOod4XYAeVKo="; + # url = "https://web.archive.org/web/20251219062558if_/https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_x86_64.AppImage"; + url = "https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_x86_64.AppImage"; + hash = "sha256-+r5Ebu40GVGG2m2lmCFQ/JkiDsN/u7XEtnLrB98602w="; }; }; }; diff --git a/hardening/nixpaks/default.nix b/hardening/nixpaks/default.nix index ea346650..1a9e6efb 100644 --- a/hardening/nixpaks/default.nix +++ b/hardening/nixpaks/default.nix @@ -23,7 +23,6 @@ in (_: super: { nixpaks = { qq = wrapper pkgs-master ./qq.nix; - wechat = wrapper super ./wechat.nix; telegram-desktop = wrapper super ./telegram-desktop.nix; firefox = wrapper super ./firefox.nix; }; diff --git a/hosts/12kingdoms-shoukei/apple-silicon.nix b/hosts/12kingdoms-shoukei/apple-silicon.nix index b2b554aa..8916a8db 100644 --- a/hosts/12kingdoms-shoukei/apple-silicon.nix +++ b/hosts/12kingdoms-shoukei/apple-silicon.nix @@ -28,10 +28,10 @@ muvm # run x86_64 Apps/Games in a microVM, used as a workaround of apple silicon's 16k page size. ]; - networking.wireless.iwd = { - enable = true; - settings.General.EnableNetworkConfiguration = true; - }; + # networking.wireless.iwd = { + # enable = true; + # settings.DriverQuirks.DefaultInterface = true; + # }; # configures the network interface(include wireless) via `nmcli` & `nmtui` networking.networkmanager.enable = true; diff --git a/modules/nixos/desktop/misc.nix b/modules/nixos/desktop/misc.nix index 4c07c57e..00667493 100644 --- a/modules/nixos/desktop/misc.nix +++ b/modules/nixos/desktop/misc.nix @@ -36,7 +36,7 @@ # thunar file manager(part of xfce) related options thunar = { enable = true; - plugins = with pkgs.xfce; [ + plugins = with pkgs; [ thunar-archive-plugin thunar-volman ];