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

5
.gitignore vendored
View File

@@ -5,3 +5,8 @@
# Documents
*.pdf
# Builds
target
build
.venv

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.13

7
Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "minis"
version = "0.1.0"

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "minis"
version = "0.1.0"
edition = "2024"
[dependencies]

1061
Manifest.toml Normal file
View File

File diff suppressed because it is too large Load Diff

2
Project.toml Normal file
View File

@@ -0,0 +1,2 @@
[deps]
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"

View File

@@ -4,3 +4,13 @@ This is the home for all kinds of projects in various languages that
profit from beeing versionized with `git`.
Eventually these will migrate to a own repo when they need more space, time or abstraction.
## Justfile
Make use of the provided `justfile` for a good place to start exploring.
## Multicultural
This projects houses many different languages. That is why you will find
lots of files that correspond to different tools and languages.
Dont just delete them. They may be useful when you pick the language up again.

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;
};
}

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
def main():
print("Hello from minis!")
if __name__ == "__main__":
main()

7
pyproject.toml Normal file
View File

@@ -0,0 +1,7 @@
[project]
name = "minis"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []

3
src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}