diff --git a/packages/default.nix b/packages/default.nix index f33140ca..5aa8e10b 100644 --- a/packages/default.nix +++ b/packages/default.nix @@ -1,6 +1,7 @@ # 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) {}}: { +{ pkgs ? (import ../nixpkgs.nix) { } }: { # example = pkgs.callPackage ./example { }; - nullpomino = pkgs.callPackage ./nullpomino.nix {}; + nullpomino = pkgs.callPackage ./nullpomino.nix { }; + ddns-updater = pkgs.callPackage ./ddns-updater.nix { }; }