nixos-config/shell.nix

11 lines
187 B
Nix
Raw Normal View History

2020-10-11 11:12:48 +02:00
{ pkgs ? import <nixpkgs> { } }:
2020-08-22 17:44:39 +02:00
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nixpkgs-fmt
];
shellHook = ''
${(import ./default.nix).pre-commit-check.shellHook}
2020-08-22 17:44:39 +02:00
'';
}