nixos-config/shell.nix

11 lines
188 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
2020-08-22 17:44:39 +02:00
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nixpkgs-fmt
];
buildPhase = ''
ln -f -s ../../pre-commit-hook .git/hooks/pre-commit
'';
}