nixos-config/pkgs/default.nix

11 lines
300 B
Nix
Raw Permalink Normal View History

2024-04-08 20:32:17 +02:00
# Custom packages, that can be defined similarly to ones from nixpkgs
# You can build them using 'nix build .#example'
2024-05-16 20:15:39 +02:00
{
pkgs,
# lib,
...
}: {
2024-06-07 14:57:57 +02:00
vedirect-reader-nixos-config = pkgs.callPackage ./vedirect-reader-nixos-config {};
default = pkgs.callPackage ./vedirect-reader-nixos-config {};
2024-04-08 20:32:17 +02:00
}