nixos/packages/default.nix

9 lines
419 B
Nix
Raw Normal View History

2023-07-07 03:06:45 +04: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 ? (import ../nixpkgs.nix) { } }: {
2023-07-07 03:06:45 +04:00
# example = pkgs.callPackage ./example { };
nullpomino = pkgs.callPackage ./nullpomino.nix { };
ddns-updater = pkgs.callPackage ./ddns-updater.nix { };
2025-01-10 18:57:18 +04:00
akkoma-emoji.sakomoji = pkgs.callPackage ./sakomoji.nix { };
2023-07-07 03:06:45 +04:00
}