mirror of
https://github.com/nmasur/dotfiles
synced 2026-01-13 11:31:15 +00:00
13 lines
152 B
Nix
13 lines
152 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.mkShell {
|
|
name = "dotfiles-devshell";
|
|
buildInputs = with pkgs; [
|
|
git
|
|
stylua
|
|
nixfmt
|
|
shfmt
|
|
shellcheck
|
|
];
|
|
}
|