Skip to content

Commit

Permalink
chore: add allData to simple
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Oct 31, 2023
1 parent 1e55d47 commit c93b86a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
6 changes: 3 additions & 3 deletions templates/simple/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 11 additions & 6 deletions templates/simple/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,21 @@
src = ./data;
};
};
omnibus = eachSystem (
system:
inputs.omnibus.pops.lib.addLoadExtender {
load.inputs = {
inputs = {
nixpkgs = inputs.nixos-unstable.legacyPackages.${system};
};
};
}
);
allData = eachSystem (
system:
inputs.omnibus.pops.allData.addLoadExtender {
(pops.omnibus.${system}.outputs { }).exporter.pops.allData.addLoadExtender {
load = {
src = ./data;
inputs = {
inputs = {
nixpkgs = inputs.nixos-unstable.legacyPackages.${system};
};
};
};
}
);
Expand Down

0 comments on commit c93b86a

Please sign in to comment.