nixos-framework-laptop-config/dev-shell/default.nix
2024-12-28 19:33:49 -05:00

21 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
];
};
};
}