Bruno BELANYI
e26672494c
All checks were successful
ci/woodpecker/push/check Pipeline was successful
We don't need compilers.
20 lines
351 B
Nix
20 lines
351 B
Nix
{ ... }:
|
|
{
|
|
perSystem = { config, pkgs, ... }: {
|
|
devShells = {
|
|
default = pkgs.mkShellNoCC {
|
|
name = "NixOS-config";
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
gitAndTools.pre-commit
|
|
nixpkgs-fmt
|
|
];
|
|
|
|
shellHook = ''
|
|
${config.pre-commit.installationScript}
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|