dotfiles/shell.nix

9 lines
96 B
Nix

{
pkgs ? import <nixpkgs> {},
}:
pkgs.mkShell {
buildInputs = [
pkgs.shellcheck
];
}