add flake

This commit is contained in:
2026-04-19 08:18:03 +02:00
parent 9d17be35d2
commit fc0b4f3115
2 changed files with 44 additions and 0 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
description = "uiuauiuaiauauaiuaua";
inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [
uiua-unstable
];
};
};
}