Reformat and add formatters to nix env

This commit is contained in:
Luc Perkins 2022-07-29 00:11:05 +02:00
parent 055d5ea784
commit 325493f5ab
No known key found for this signature in database
GPG key ID: 4F102D0C16E232F2
10 changed files with 22 additions and 53 deletions

View file

@ -19,17 +19,12 @@
in {
devShells = {
default = pkgs.mkShell {
buildInputs = [
nodejs
pnpm
(yarn.override { inherit nodejs; })
];
buildInputs = [ nodejs pnpm (yarn.override { inherit nodejs; }) ];
shellHook = ''
echo "node `${nodejs}/bin/node --version`"
'';
};
};
}
);
});
}