mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 03:00:47 +00:00
23 lines
365 B
Nix
23 lines
365 B
Nix
{ ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
formatter = pkgs.nixfmt-tree;
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
deadnix
|
|
git
|
|
just
|
|
nixfmt-tree
|
|
prettier
|
|
pre-commit
|
|
selene
|
|
shfmt
|
|
statix
|
|
stylua
|
|
];
|
|
};
|
|
};
|
|
}
|