dotfiles/shell.nix

13 lines
220 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
git
git-secret
just
];
shellHook = ''
${(import ./default.nix).pre-commit-check.shellHook}
'';
}