blob: 47254a61e8758fe8a24f7b0a48e250c9faa7988e (
plain)
1
2
3
4
5
6
7
8
|
{ system ? builtins.currentSystem, nixpkgs ? <nixpkgs> }:
let
pkgs = import nixpkgs { inherit system; overlays = [ (import ./overlay.nix) ]; };
in {
inherit pkgs;
inherit (pkgs) workadventure;
}
|