lytlang/nix/shells.nix
2025-02-21 07:51:02 -06:00

21 lines
289 B
Nix

{
self,
pkgs,
...
}:
let
inherit (pkgs) system;
in
{
default = pkgs.mkShell {
inherit (self.checks.${system}.git-hooks) shellHook;
inputsFrom = [ self.packages.${system}.default ];
packages = with pkgs; [
rustup
gdb
gdbgui
nixd
];
};
}