chore: faster builds, fzf lua (#74)
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

This commit is contained in:
Hari 2026-04-18 14:37:34 -04:00 committed by GitHub
parent 80efbae1e9
commit 0db4171b0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 52 additions and 25 deletions

View file

@ -1,10 +1,22 @@
{ ... }:
{
inputs,
lib,
...
}:
{
perSystem =
{ pkgs, ... }:
{ 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