mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 11:23:40 +00:00
11 lines
245 B
Nix
11 lines
245 B
Nix
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
|
|
pkgs = import nixpkgs { config = { }; overlays = [ ]; };
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
shellHook = ''
|
|
${(import ./default.nix).pre-commit-check.shellHook}
|
|
'';
|
|
}
|