mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-23 01:08:32 +02:00
feat: comment out nixpkgs-unstable, we use unstable by default
Signed-off-by: Ryan Yin <xiaoyin_c@qq.com>
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user