nixos-config/pkgs/default.nix

7 lines
213 B
Nix
Raw Normal View History

2023-01-18 21:29:37 -03: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'
{ pkgs }: {
2023-01-19 00:03:04 -03:00
dzgui = pkgs.callPackage ./dzgui.nix { };
2023-01-18 21:29:37 -03:00
}