traverseda-nixos-config/pkgs/default.nix

11 lines
313 B
Nix
Raw Permalink Normal View History

2024-04-23 07:59:37 -03:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example'
2024-05-21 07:17:25 -03:00
#
{ pkgs, ... }:
{
2024-04-23 07:59:37 -03:00
# example = pkgs.callPackage ./example { };
2024-05-21 07:17:25 -03:00
creality-print = pkgs.callPackage ./creality-print { };
blender-cadsketcher = pkgs.callPackage ./blender-cadsketcher { };
2024-04-23 07:59:37 -03:00
}