Compare commits
1 commit
13b36b2dcf
...
ddb4cb6eae
Author | SHA1 | Date | |
---|---|---|---|
ddb4cb6eae |
1 changed files with 3 additions and 3 deletions
|
@ -90,7 +90,7 @@
|
|||
);
|
||||
overlays = builtins.attrValues self.overlays;
|
||||
scripts_definitions = import ./scripts;
|
||||
scripts = pkgs: builtins.mapAttrs (_name: value: pkgs.callPackage value { }) scripts_definitions;
|
||||
scripts = final: prev: builtins.mapAttrs (_name: value: prev.callPackage value { }) scripts_definitions;
|
||||
in
|
||||
{
|
||||
checks = forEachSupportedSystem (
|
||||
|
@ -121,7 +121,7 @@
|
|||
|
||||
packages = forEachSupportedSystem (
|
||||
{ pkgs, system }:
|
||||
scripts pkgs
|
||||
scripts pkgs pkgs
|
||||
// {
|
||||
inherit (import ./docs { inherit pkgs lib; })
|
||||
docs
|
||||
|
@ -139,9 +139,9 @@
|
|||
|
||||
# Provide necessary overlays
|
||||
overlays = {
|
||||
inherit scripts;
|
||||
nixvim = nixvim.overlays.default;
|
||||
audiomenu = audiomenu.overlays.default;
|
||||
scripts = _final: prev: scripts prev;
|
||||
unstable =
|
||||
final: prev:
|
||||
let
|
||||
|
|
Loading…
Add table
Reference in a new issue