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,
|
inputs,
|
||||||
system,
|
system,
|
||||||
...
|
...
|
||||||
}: {
|
} @ args: {
|
||||||
nixpkgs.channels.default = {
|
nixpkgs.channels.default = rec {
|
||||||
|
default = pkgs;
|
||||||
# nixpkgs (stable branch)
|
# nixpkgs (stable branch)
|
||||||
pkgs = {
|
pkgs = {
|
||||||
inherit system;
|
inherit system;
|
||||||
source = inputs.nixpkgs;
|
source = inputs.nixpkgs;
|
||||||
overlays =
|
overlays = [
|
||||||
[inputs.dobutterfliescry-net.overlays.default]
|
inputs.dobutterfliescry-net.overlays.default
|
||||||
++ import ./overlays/default.nix;
|
(import ./overlays/default.nix args)
|
||||||
|
];
|
||||||
config = {
|
config = {
|
||||||
# allowUnfree = false;
|
# allowUnfree = false;
|
||||||
allowBroken = false;
|
allowBroken = false;
|
||||||
|
|
@ -31,9 +33,10 @@
|
||||||
upkgs = {
|
upkgs = {
|
||||||
inherit system;
|
inherit system;
|
||||||
source = inputs.nixpkgs-unstable;
|
source = inputs.nixpkgs-unstable;
|
||||||
overlays =
|
overlays = [
|
||||||
[inputs.dobutterfliescry-net.overlays.default]
|
inputs.dobutterfliescry-net.overlays.default
|
||||||
++ import ./overlays/default.nix;
|
(import ./overlays/default.nix args)
|
||||||
|
];
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = false;
|
allowUnfree = false;
|
||||||
allowBroken = false;
|
allowBroken = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue