A collection of easily useable/reusable nilla shells

feat: add python shell

authored by thecoded.prof and committed by tangled.org d05ab929 341df6cf

+16
+16
nilla.nix
··· 63 }; 64 }; 65 66 shells.typst = { 67 systems = [ "x86_64-linux" ]; 68
··· 63 }; 64 }; 65 66 + shells.python = { 67 + systems = [ "x86_64-linux" ]; 68 + 69 + shell = 70 + { 71 + pkgs, 72 + mkShell, 73 + }: 74 + mkShell { 75 + packages = [ 76 + pkgs.python314 77 + pkgs.python314Packages.pip 78 + ]; 79 + }; 80 + }; 81 + 82 shells.typst = { 83 systems = [ "x86_64-linux" ]; 84