flake.nix: changed package name to 'invoiceninja-desktop'

This commit is contained in:
Andrew Bryant 2025-01-01 12:31:46 -05:00
parent efc3b4a8e2
commit 92b7216c0b

View File

@ -18,11 +18,11 @@
); );
in in
rec { rec {
overlays.default = final: prev: { invoice-ninja-desktop = final.callPackage ./package.nix { }; }; overlays.default = final: prev: { invoiceninja-desktop = final.callPackage ./package.nix { }; };
packages = forEachSystem (system: { packages = forEachSystem (system: {
invoice-ninja-desktop = pkgsBySystem.${system}.invoice-ninja-desktop; invoiceninja-desktop = pkgsBySystem.${system}.invoiceninja-desktop;
default = pkgsBySystem.${system}.invoice-ninja-desktop; default = pkgsBySystem.${system}.invoiceninja-desktop;
}); });
}; };
} }