feat(nix/stage-tamagotchi): update to electron rewrite (#646)

Co-authored-by: Neko <neko@ayaka.moe>
This commit is contained in:
Weathercold
2025-12-05 15:14:42 +08:00
committed by GitHub
co-authored by Neko
parent 93cbfec583
commit 19c052d2cc
8 changed files with 152 additions and 137 deletions
+5 -5
View File
@@ -21,11 +21,10 @@
{
formatter = forAllSystems (system: (pkgsForSystem system).nixfmt-tree);
packages = forAllSystems (system: {
default = self.packages.${system}.airi;
airi = (pkgsForSystem system).callPackage ./nix/package.nix { };
airi-debug = (pkgsForSystem system).callPackage ./nix/package.nix { debugBuild = true; };
});
packages = forAllSystems (
system:
{ default = self.packages.${system}.airi; } // self.overlays.airi (pkgsForSystem system) null
);
overlays = {
default = self.overlays.airi;
@@ -40,6 +39,7 @@
inputsFrom = [ self.packages.${system}.airi ];
packages = [
nixd
nixfmt-rfc-style
nixfmt-tree
pnpm
];