Added devenv

This commit is contained in:
2024-11-13 10:07:53 +00:00
parent 150fe23f6c
commit 9eadbb46ee
5 changed files with 198 additions and 1 deletions

23
devenv.nix Normal file
View File

@@ -0,0 +1,23 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
packages = with pkgs; [
act
git
];
languages = {
python = {
version = "3.12";
enable = true;
poetry = {
enable = true;
};
};
};
languages.rust.enable = true;
}