nix: create initial flake

This commit is contained in:
Romain Paquet 2025-10-01 15:57:46 +02:00
parent c21cb47a54
commit 057fe88a21
3 changed files with 142 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
perSystem =
{
pkgs,
...
}:
{
devShells.default = pkgs.mkShell {
packages = [
pkgs.nil
pkgs.nixfmt-rfc-style
pkgs.cargo
pkgs.rust-analyzer
];
};
};
}