Cleanup Nix flake.

This commit is contained in:
bin
2025-09-29 21:26:46 -04:00
parent 73df468bbb
commit 161696427b

View File

@@ -49,8 +49,6 @@
mv $out/bin/{src,git-pages}
'';
};
image = pkgs.callPackage ./nix/pkgs/image.nix { inherit git-pages self; };
in
{
formatter = pkgs.nixfmt-tree;
@@ -59,10 +57,14 @@
inputsFrom = [
git-pages
];
packages = with pkgs; [
flyctl
];
};
packages = {
inherit git-pages image;
inherit git-pages;
default = git-pages;
};
}