mirror of
https://github.com/davegallant/nix-config
synced 2025-08-05 18:53:39 +00:00
14 lines
255 B
Nix
14 lines
255 B
Nix
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
|
|
pkgs = import nixpkgs {
|
|
config = { };
|
|
overlays = [ ];
|
|
};
|
|
|
|
in
|
|
pkgs.mkShell {
|
|
shellHook = ''
|
|
${(import ./default.nix).pre-commit-check.shellHook}
|
|
'';
|
|
}
|