Add more devshells in flake.nix

This commit is contained in:
JuliusFreudenberger 2026-03-29 21:21:00 +02:00
parent d7b1521b29
commit 4c6bc31476

View file

@ -219,6 +219,10 @@
})
php82Packages.composer
];};
python-jupyter = pkgs.mkShell { packages = [ (pkgs.python3.withPackages (ps: with ps; [
ipykernel jupyterlab matplotlib numpy pandas
])) ]; };
opentofu = pkgs.mkShell { packages = with pkgs; [ opentofu ]; };
}
);