add npkgs, rename channels.default -> channels.base
This commit is contained in:
parent
19987dd78e
commit
39ccbbd2ed
1 changed files with 7 additions and 6 deletions
13
nixpkgs.nix
13
nixpkgs.nix
|
|
@ -1,11 +1,15 @@
|
|||
{
|
||||
lib,
|
||||
inputs,
|
||||
system,
|
||||
...
|
||||
} @ args: {
|
||||
nixpkgs.channels = {
|
||||
default = {
|
||||
nixpkgs.channels = rec {
|
||||
# base
|
||||
base = npkgs;
|
||||
|
||||
# nixpkgs-stable
|
||||
npkgs = {
|
||||
source = inputs.nixpkgs;
|
||||
overlays = [
|
||||
inputs.dobutterfliescry-net.overlays.default
|
||||
(import ./overlays args)
|
||||
|
|
@ -29,10 +33,8 @@
|
|||
|
||||
# nixpkgs-unstable
|
||||
upkgs = {
|
||||
inherit system;
|
||||
source = inputs.nixpkgs-unstable;
|
||||
overlays = [
|
||||
inputs.dobutterfliescry-net.overlays.default
|
||||
inputs.millennium.overlays.default
|
||||
(import ./overlays args)
|
||||
];
|
||||
|
|
@ -44,7 +46,6 @@
|
|||
|
||||
# nixpkgs-master
|
||||
mpkgs = {
|
||||
inherit system;
|
||||
source = inputs.nixpkgs-master;
|
||||
overlays = [];
|
||||
config = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue