dotfiles/shell.nix

14 lines
220 B
Nix
Raw Normal View History

2023-02-10 07:46:37 +01:00
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
git
git-secret
just
];
2023-02-10 09:03:25 +01:00
shellHook = ''
${(import ./default.nix).pre-commit-check.shellHook}
'';
2023-02-10 07:46:37 +01:00
}