1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-16 03:57:05 +00:00

13 lines
162 B
Nix
Raw Normal View History

2025-03-09 18:04:01 +00:00
{ pkgs, ... }:
pkgs.mkShell {
name = "dotfiles-devshell";
buildInputs = with pkgs; [
git
stylua
nixfmt-rfc-style
shfmt
shellcheck
];
}