nixos-framework-laptop-config/dev-shell/default.nix

22 lines
314 B
Nix
Raw Permalink Normal View History

2024-12-28 19:33:49 -05:00
{...}: {
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
];
};
};
}