Init nix, rust, python and julia

This commit is contained in:
2026-01-19 23:46:33 +01:00
parent 80b52a82c2
commit f39f4209bd
11 changed files with 1123 additions and 0 deletions

15
flake.nix Normal file
View File

@@ -0,0 +1,15 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
}