aboutsummaryrefslogtreecommitdiff
path: root/test.nix
blob: c4d2f56bfc97e9a52dd895cda242c9a5d855c5d2 (plain)
1
2
3
4
5
6
7
8
9
{ system ? builtins.currentSystem, nixpkgs ? <nixpkgs> }:

let
  pkgs = import nixpkgs { inherit system; overlays = [ (import ./overlay.nix) ]; };
in {
  inherit pkgs;
  inherit (pkgs) workadventure;
}