dotfiles/pkgs/default.nix

6 lines
241 B
Nix
Raw Normal View History

2023-04-25 20:21:03 +01: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 23:10:57 +03:00
{pkgs ? (import ../nixpkgs.nix) {}}: {
2023-04-25 20:21:03 +01:00
# example = pkgs.callPackage ./example { };
}