feat: comment out nixpkgs-unstable, we use unstable by default

Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>
This commit is contained in:
Ryan Yin
2025-11-01 20:17:23 +08:00
parent 0c2dcc0734
commit 4490f13d51
18 changed files with 94 additions and 108 deletions

View File

@@ -18,11 +18,12 @@ let
inherit mylib myvars;
# use unstable branch for some packages to get the latest updates
pkgs-unstable = import inputs.nixpkgs-unstable {
inherit system; # refer the `system` parameter form outer scope recursively
# To use chrome, we need to allow the installation of non-free software
config.allowUnfree = true;
};
# pkgs-unstable = import inputs.nixpkgs-unstable {
# inherit system; # refer the `system` parameter form outer scope recursively
# # To use chrome, we need to allow the installation of non-free software
# config.allowUnfree = true;
# };
pkgs-stable = import inputs.nixpkgs-stable {
inherit system;
# To use chrome, we need to allow the installation of non-free software
@@ -30,8 +31,13 @@ let
};
pkgs-patched = import inputs.nixpkgs-patched {
inherit system;
# To use chrome, we need to allow the installation of non-free software
config.allowUnfree = true;
# to use chrome, we need to allow the installation of non-free software
config.allowunfree = true;
};
pkgs-master = import inputs.nixpkgs-master {
inherit system;
# to use chrome, we need to allow the installation of non-free software
config.allowunfree = true;
};
pkgs-x64 = import nixpkgs {