srx.astro.nix/nix/shell.nix
2022-12-23 00:04:21 +01:00

22 lines
404 B
Nix

{self, ...}: system:
with self.pkgs.${system};
mkShell {
name = "srx.nix.astro";
nativeBuildInputs = with pkgs; [
alejandra
editorconfig-checker
git
nix-linter
nodejs
pre-commit
rnix-lsp
vscodium-fhs
yarn
yarn2nix
];
postInstall = '''';
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
'';
}