shells/nix: init shell

This commit is contained in:
Gabriel Arazas 2022-04-17 11:00:08 +08:00
parent 7f44233e09
commit d5a1d093d1

8
shells/nix.nix Normal file
View File

@ -0,0 +1,8 @@
{ mkShell, lib, nixfmt, rnix-lsp }:
mkShell {
packages = [
nixfmt
rnix-lsp
];
}