dotfiles/pkgs/default.nix

6 lines
241 B
Nix
Raw Normal View History

2023-04-25 19:21:03 +00:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
2023-04-25 20:10:57 +00:00
{pkgs ? (import ../nixpkgs.nix) {}}: {
2023-04-25 19:21:03 +00:00
# example = pkgs.callPackage ./example { };
}