nixos-config/pkgs/default.nix

9 lines
355 B
Nix
Raw Permalink Normal View History

2023-01-18 21:29:37 -03:00
# 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 }: {
2023-01-25 17:00:40 -03:00
cargo-checkmate = pkgs.callPackage ./cargo-checkmate.nix { };
2023-02-13 11:02:55 -03:00
lipsum = pkgs.callPackage ./lipsum.nix { inherit inputs; };
2023-08-31 14:08:48 -03:00
emmet-cli = pkgs.callPackage ./emmet-cli.nix { };
2023-01-18 21:29:37 -03:00
}