fix(flake): move package to the right output

This commit is contained in:
Artur Manuel 2025-01-16 16:35:36 +00:00
commit 7b8af02bcc

View file

@ -25,12 +25,12 @@
packages = forAllSystems ( packages = forAllSystems (
{pkgs}: { {pkgs}: {
default = pkgs.callPackage ./flake/package.nix {}; default = pkgs.callPackage ./flake/package.nix {};
hetch = self.packages.${pkgs.system}.default;
} }
); );
devShells = forAllSystems ( devShells = forAllSystems (
{pkgs}: { {pkgs}: {
default = pkgs.callPackage ./flake/shell.nix {}; default = pkgs.callPackage ./flake/shell.nix {};
hetch = self.packages.${pkgs.system}.default;
} }
); );
formatter = forAllSystems ({pkgs}: treefmtEval.${pkgs.system}.config.build.wrapper); formatter = forAllSystems ({pkgs}: treefmtEval.${pkgs.system}.config.build.wrapper);