nix/modules/devshells.nix
Hari 0db4171b0b
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions
chore: faster builds, fzf lua (#74)
2026-04-18 14:37:34 -04:00

35 lines
662 B
Nix

{
inputs,
lib,
...
}:
{
perSystem =
{ pkgs, system, ... }:
{
formatter = pkgs.nixfmt-tree;
packages =
{
home-manager = inputs.home-manager.packages.${system}.home-manager;
}
// lib.optionalAttrs (lib.hasSuffix "darwin" system) {
darwin-rebuild = inputs.nix-darwin.packages.${system}.darwin-rebuild;
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
deadnix
git
just
nixfmt-tree
prettier
pre-commit
selene
shfmt
statix
stylua
];
};
};
}