nixos-runner/shell.nix

24 lines
335 B
Nix
Raw Normal View History

2025-02-17 23:24:51 +01:00
{
nixpkgs,
treefmtEval,
system,
...
}:
let
pkgs = nixpkgs.legacyPackages.${system};
packages = with pkgs; [
git
2025-05-23 23:24:03 +02:00
pre-commit
just
2025-02-17 23:24:51 +01:00
];
in
{
default = pkgs.mkShell {
inherit packages;
# nativeBuildInputs = packages;
inputsFrom = [
treefmtEval.${pkgs.system}.config.build.devShell
];
};
}