nix-config/pkgs/default.nix

8 lines
271 B
Nix
Raw Normal View History

2023-12-23 21:20:40 +01:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example'
{pkgs, ...}: {
2023-12-23 21:20:40 +01:00
# example = pkgs.callPackage ./example { };
2023-12-24 11:17:07 +01:00
alvr = pkgs.callPackage ./alvr {};
2024-01-07 15:44:59 +01:00
feishin-appimage = pkgs.callPackage ./feishin {};
2023-12-23 21:20:40 +01:00
}