aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-02-09 15:31:07 +0530
committerAkshay Nair <phenax5@gmail.com>2025-02-09 15:31:07 +0530
commit2b5ac273c2adee5327f58fb34ac30b66da917347 (patch)
tree019fe65d0c3dad39486c7e4b75367f20a47c0b8b /flake.nix
downloaduiua-creative-coding-2b5ac273c2adee5327f58fb34ac30b66da917347.tar.gz
uiua-creative-coding-2b5ac273c2adee5327f58fb34ac30b66da917347.zip
Init commit with uiua basic shit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..151edd3
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,14 @@
+{
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
+ };
+
+ outputs = { self, nixpkgs }:
+ let
+ pkgs = import nixpkgs { system = "x86_64-linux"; };
+ in {
+ devShells.x86_64-linux.default = pkgs.mkShell {
+ buildInputs = [pkgs.uiua];
+ };
+ };
+}