24 lines
422 B
Nix
24 lines
422 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
pkgs.mkShell
|
|
{
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs
|
|
pnpm
|
|
python3
|
|
python3Packages.pip
|
|
nginx
|
|
python313Packages.fastapi
|
|
python313Packages.graphviz
|
|
graphviz
|
|
|
|
];
|
|
|
|
shellHook = ''
|
|
cd ~/projects
|
|
echo "Bienvenido shell!" | ${pkgs.lolcat}/bin/lolcat
|
|
kitty +kitten icat /home/jose/Pictures/Screenshots/niggaputer.png
|
|
|
|
'';
|
|
}
|