diff --git a/dotnet.nix b/dotnet.nix index 9e7228c..59aa796 100644 --- a/dotnet.nix +++ b/dotnet.nix @@ -4,7 +4,7 @@ let # Rolling updates, not deterministic. pkgs = import (fetchTarball "channel:nixpkgs-unstable") { }; in pkgs.mkShell { - buildInputs = [ pkgs.dotnet-sdk ]; + buildInputs = [ pkgs.dotnet-sdk_9 ]; shellHook = '' exec zsh ''; diff --git a/python.nix b/python.nix new file mode 100644 index 0000000..81ffd4c --- /dev/null +++ b/python.nix @@ -0,0 +1,8 @@ +let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { }; +in pkgs.mkShell { + packages = + [ (pkgs.python3.withPackages (python-pkgs: [ python-pkgs.py2cfg ])) ]; + shellHook = '' + exec zsh + ''; +}