summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 60be015d99467fce144ec860b9b83242e29cc8e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  description = "playing around with pebble";

  inputs = {
    pebble.url = "github:pebble-dev/pebble.nix";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { pebble, flake-utils, ... }:
    flake-utils.lib.eachDefaultSystem (system: {
      devShell = pebble.pebbleEnv.${system} { };
    });
}