nixos-config/pkgs/default.nix
2024-03-28 10:23:58 -03:00

10 lines
419 B
Nix

# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
{ pkgs, inputs }: {
cargo-checkmate = pkgs.callPackage ./cargo-checkmate.nix { };
lipsum = pkgs.callPackage ./lipsum.nix { inherit inputs; };
emmet-cli = pkgs.callPackage ./emmet-cli.nix { };
kak-tree-sitter = pkgs.callPackage ./kak-tree-sitter.nix { };
}