22 lines
314 B
Nix
22 lines
314 B
Nix
|
{...}: {
|
||
|
perSystem = {
|
||
|
pkgs,
|
||
|
inputs',
|
||
|
...
|
||
|
}: {
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
just
|
||
|
alejandra
|
||
|
nixpkgs-fmt
|
||
|
nix-tree
|
||
|
nix-diff
|
||
|
nvd
|
||
|
nix-inspect
|
||
|
nix-du
|
||
|
nix-output-monitor
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|