nix/pkgs/default.nix

13 lines
480 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 15:28:57 -06:00
{pkgs, ...}: rec {
iosevka-lyte-term = pkgs.callPackage ./iosevka-lyte-term.nix {inherit (pkgs) iosevka;};
iosevka-lyte-term-min = pkgs.callPackage ./iosevka-lyte-term-min.nix {
inherit pkgs;
inherit (pkgs) brotli;
inherit iosevka-lyte-term;
fonttools = pkgs.python311Packages.fonttools;
};
2023-10-03 11:52:44 -05:00
# example = pkgs.callPackage ./example { };
}