Files
dotfiles/pkgs/tools/misc/dotfiles-devshell/package.nix
2026-01-11 16:38:47 -05:00

13 lines
152 B
Nix

{ pkgs, ... }:
pkgs.mkShell {
name = "dotfiles-devshell";
buildInputs = with pkgs; [
git
stylua
nixfmt
shfmt
shellcheck
];
}