23 lines
394 B
Nix
23 lines
394 B
Nix
{
|
|
description = "Flake description";
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
}: {
|
|
# setup the devShell for x86_64-linux.
|
|
devShell.x86_64-linux = with nixpkgs.legacyPackages.x86_64-linux;
|
|
mkShell {
|
|
buildInputs = [
|
|
pnpm
|
|
nodejs
|
|
just
|
|
podman-compose
|
|
];
|
|
|
|
shellHook = ''
|
|
echo "mreow"
|
|
'';
|
|
};
|
|
};
|
|
}
|