nix/pkgs/default.nix

13 lines
451 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-06-01 20:08:59 -05:00
{pkgs, ...}: rec {
2024-02-03 10:51:20 -06:00
# example = pkgs.callPackage ./example { };
2024-06-01 20:08:59 -05:00
iosevkaLyteTerm = pkgs.callPackage ./iosevka-lyteterm-raw.nix {inherit (pkgs) iosevka;};
iosevkaLyteTermWebMin = pkgs.callPackage ./iosevka-lyteterm-webmin.nix {
pkgs = pkgs;
inherit (pkgs) python311Packages parallel;
inherit iosevkaLyteTerm;
2024-02-02 15:28:57 -06:00
};
2023-10-03 11:52:44 -05:00
}