Files
2026-06-06 21:18:09 +02:00

21 lines
409 B
Nix

{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
packages = [
(pkgs.python312.withPackages (ps: with ps; [
coconut
requests
]))
];
};
};
}