add default nixpkgs.nix
This commit is contained in:
parent
b6202ad56a
commit
ed8618c8a6
1 changed files with 11 additions and 8 deletions
19
nixpkgs.nix
19
nixpkgs.nix
|
|
@ -3,15 +3,17 @@
|
|||
inputs,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
nixpkgs.channels.default = {
|
||||
} @ args: {
|
||||
nixpkgs.channels.default = rec {
|
||||
default = pkgs;
|
||||
# nixpkgs (stable branch)
|
||||
pkgs = {
|
||||
inherit system;
|
||||
source = inputs.nixpkgs;
|
||||
overlays =
|
||||
[inputs.dobutterfliescry-net.overlays.default]
|
||||
++ import ./overlays/default.nix;
|
||||
overlays = [
|
||||
inputs.dobutterfliescry-net.overlays.default
|
||||
(import ./overlays/default.nix args)
|
||||
];
|
||||
config = {
|
||||
# allowUnfree = false;
|
||||
allowBroken = false;
|
||||
|
|
@ -31,9 +33,10 @@
|
|||
upkgs = {
|
||||
inherit system;
|
||||
source = inputs.nixpkgs-unstable;
|
||||
overlays =
|
||||
[inputs.dobutterfliescry-net.overlays.default]
|
||||
++ import ./overlays/default.nix;
|
||||
overlays = [
|
||||
inputs.dobutterfliescry-net.overlays.default
|
||||
(import ./overlays/default.nix args)
|
||||
];
|
||||
config = {
|
||||
allowUnfree = false;
|
||||
allowBroken = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue