don't use nixpkgs-staging-next

This commit is contained in:
NullBite 2024-03-29 21:50:49 -04:00
parent 8a1ec3911e
commit ccef587a69
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
3 changed files with 1 additions and 20 deletions

17
flake.lock generated
View File

@ -417,22 +417,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-staging-next": {
"locked": {
"lastModified": 1711735267,
"narHash": "sha256-Zj44dQ38cqN3NddIE/eA8t36eAKv0SVoMZPK8FF1pQ0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1149e1edb772e5f8e87d1a9be91bc34795fdafe8",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "staging-next",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1711593151, "lastModified": 1711593151,
@ -493,7 +477,6 @@
"nix-wsl": "nix-wsl", "nix-wsl": "nix-wsl",
"nixfiles-assets": "nixfiles-assets", "nixfiles-assets": "nixfiles-assets",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixpkgs-staging-next": "nixpkgs-staging-next",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"pkg-android-tools": "pkg-android-tools", "pkg-android-tools": "pkg-android-tools",
"rust-overlay": "rust-overlay", "rust-overlay": "rust-overlay",

View File

@ -6,8 +6,6 @@
# ^^^^^^^^^^^^^ this part is optional # ^^^^^^^^^^^^^ this part is optional
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nixpkgs-staging-next.url = "github:NixOS/nixpkgs/staging-next";
# this seems to be a popular way to declare systems # this seems to be a popular way to declare systems
systems.url = "github:nix-systems/default"; systems.url = "github:nix-systems/default";

View File

@ -7,7 +7,7 @@ let
# kernel update # kernel update
newKernelPackages = let newKernelPackages = let
pkgs-new = import inputs.nixpkgs-staging-next { inherit (pkgs) system; config.allowUnfree = true; }; pkgs-new = import inputs.nixpkgs-unstable { inherit (pkgs) system; config.allowUnfree = true; };
in pkgs-new.linuxPackages_latest; in pkgs-new.linuxPackages_latest;
in in
{ {