Files
read_aconity_layers/devenv.nix

30 lines
442 B
Nix

{
pkgs,
lib,
config,
inputs,
...
}: {
packages = with pkgs; [
act
git
ruff
];
env.NIX_LD_LIBRARY_PATH = lib.makeLibraryPath (with pkgs; [
stdenv.cc.cc
]);
env.NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
languages = {
python = {
version = "3.12";
enable = true;
poetry = {
enable = true;
};
};
};
languages.rust.enable = true;
}