summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-06-08 17:52:23 -0400
committerLLLL Colonq <llll@colonq>2026-06-08 17:52:23 -0400
commit39220190956935dc71564ffa135d99744a67bf27 (patch)
treee0ff73a1bf9ef3727455b3d0b14424bdfea97cea /flake.nix
Initial commit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
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} { };
+ });
+}