chore: dev shell with stylua

This commit is contained in:
Guz
2025-04-16 16:08:28 -03:00
parent 6ec8fa8e35
commit ef349a9fc6

View File

@@ -45,6 +45,13 @@
};
default = self.packages."${pkgs.system}".neovim;
});
devShells = forAllSystems ({pkgs, ...}: {
default = pkgs.mkShell {
buildInputs = with pkgs; [
stylua
];
};
});
nixosModules = {
neovim = import ./nixos.nix {inherit self;};