sermo/packages/nix/shell.nix
teesh3rt 158636fadc
All checks were successful
build / test-debian (push) Successful in 1m36s
build / test-alpine (push) Successful in 2m41s
feat: add a nix package and devshell
2026-02-12 17:24:46 +02:00

7 lines
128 B
Nix

{...}: {
perSystem = {pkgs, ...}: {
devShells.default = pkgs.mkShell {
packages = with pkgs; [cargo];
};
};
}