diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..60be015 --- /dev/null +++ b/flake.nix @@ -0,0 +1,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} { }; + }); +} |
