mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-07-08 22:05:06 +02:00
fix: update wechat, fix warnings & issues after update
This commit is contained in:
Generated
+4
-4
@@ -779,16 +779,16 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-patched": {
|
"nixpkgs-patched": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1767514635,
|
"lastModified": 1771008912,
|
||||||
"narHash": "sha256-uIZvxuyjwKJkcGFD/DEdmHuwjyjwkk6SkkR/5Z/cpdw=",
|
"narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=",
|
||||||
"owner": "ryan4yin",
|
"owner": "ryan4yin",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "fd9662e1991b624a72e5e545963136906c5c1adf",
|
"rev": "a82ccc39b39b621151d6732718e3e250109076fa",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "ryan4yin",
|
"owner": "ryan4yin",
|
||||||
"ref": "nixos-unstable-patched",
|
"ref": "nixos-unstable",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
nixpkgs-2505.url = "github:nixos/nixpkgs/nixos-25.05";
|
nixpkgs-2505.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||||
|
|
||||||
# nixpkgs with some custom patches
|
# nixpkgs with some custom patches
|
||||||
nixpkgs-patched.url = "github:ryan4yin/nixpkgs/nixos-unstable-patched";
|
nixpkgs-patched.url = "github:ryan4yin/nixpkgs/nixos-unstable";
|
||||||
# get some latest packages from the master branch
|
# get some latest packages from the master branch
|
||||||
nixpkgs-master.url = "github:nixos/nixpkgs/master";
|
nixpkgs-master.url = "github:nixos/nixpkgs/master";
|
||||||
|
|
||||||
|
|||||||
@@ -18,17 +18,15 @@ let
|
|||||||
aarch64-linux = {
|
aarch64-linux = {
|
||||||
version = "4.1.0.13";
|
version = "4.1.0.13";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
# 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";
|
url = "https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_arm64.AppImage";
|
||||||
hash = "sha256-/d5crM6IGd0k0fSlBSQx4TpIVX/8iib+an0VMkWMNdw=";
|
hash = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
x86_64-linux = {
|
x86_64-linux = {
|
||||||
version = "4.1.0.13";
|
version = "4.1.0.13";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
# 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";
|
url = "https://dldir1v6.qq.com/weixin/Universal/Linux/WeChatLinux_x86_64.AppImage";
|
||||||
hash = "sha256-+r5Ebu40GVGG2m2lmCFQ/JkiDsN/u7XEtnLrB98602w=";
|
hash = "sha256-Pfl81lNVlMJWyPqFli1Af2q8pRLujcKCjYoILCKDx8U=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
# Changing working directory when exiting Yazi
|
# Changing working directory when exiting Yazi
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
enableNushellIntegration = true;
|
enableNushellIntegration = true;
|
||||||
|
shellWrapperName = "yy";
|
||||||
settings = {
|
settings = {
|
||||||
mgr = {
|
mgr = {
|
||||||
show_hidden = true;
|
show_hidden = true;
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
kubevirt # virtctl
|
kubevirt # virtctl
|
||||||
pkgs-2505.kubernetes-helm
|
pkgs-2505.kubernetes-helm
|
||||||
fluxcd
|
fluxcd
|
||||||
argocd
|
# argocd
|
||||||
|
|
||||||
ko # build go project to container image
|
ko # build go project to container image
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
xdg.terminal-exec = {
|
xdg.terminal-exec = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.xdg-terminal-exec-mkhl;
|
package = pkgs.xdg-terminal-exec;
|
||||||
settings =
|
settings =
|
||||||
let
|
let
|
||||||
my_terminal_desktop = [
|
my_terminal_desktop = [
|
||||||
|
|||||||
@@ -63,10 +63,10 @@
|
|||||||
udev
|
udev
|
||||||
alsa-lib
|
alsa-lib
|
||||||
vulkan-loader
|
vulkan-loader
|
||||||
xorg.libX11
|
libX11
|
||||||
xorg.libXcursor
|
libXcursor
|
||||||
xorg.libXi
|
libXi
|
||||||
xorg.libXrandr # To use the x11 feature
|
libXrandr # To use the x11 feature
|
||||||
libxkbcommon
|
libxkbcommon
|
||||||
wayland # To use the wayland feature
|
wayland # To use the wayland feature
|
||||||
])
|
])
|
||||||
|
|||||||
Reference in New Issue
Block a user