This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/pkgs/default.nix

10 lines
415 B
Nix
Raw Normal View History

2023-01-19 01:29:37 +01: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 }: {
2024-04-01 16:57:17 +02:00
blade-formatter = pkgs.callPackage ./blade-formatter { };
2023-01-25 21:00:40 +01:00
cargo-checkmate = pkgs.callPackage ./cargo-checkmate.nix { };
2023-02-13 15:02:55 +01:00
lipsum = pkgs.callPackage ./lipsum.nix { inherit inputs; };
2023-08-31 19:08:48 +02:00
emmet-cli = pkgs.callPackage ./emmet-cli.nix { };
2023-01-19 01:29:37 +01:00
}