nix/pkgs/default.nix

7 lines
262 B
Nix
Raw Normal View History

2023-10-03 11:52:44 -05:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example'
2024-02-02 13:54:20 -06:00
{pkgs, ...}: {
iosevka-lyte-term = pkgs.callPackage ./iosevka-lyte-term.nix {inherit pkgs;};
2023-10-03 11:52:44 -05:00
# example = pkgs.callPackage ./example { };
}