customer-portal/nix/devShells/flake-module.nix
chris 28fdba8b00
All checks were successful
Test action / Print hello world (push) Successful in 8m32s
too lazy to think of a message, so enjoy this pointless text. Good luck future me...
2025-10-08 10:49:59 +00:00

11 lines
No EOL
234 B
Nix
Executable file

{ inputs, ... }:
{
perSystem = { pkgs, system, ... }: {
devShells.default = pkgs.mkShellNoCC {
nativeBuildInputs = with pkgs; [
bun
inputs.bun2nix.packages.${system}.default
];
};
};
}