Refactor: consolidate packages into flake-hub

This commit is contained in:
Oleks
2026-03-13 00:31:12 +02:00
parent 18ff5e1de5
commit ef49e03f76
3 changed files with 62 additions and 1 deletions
+6 -1
View File
@@ -12,10 +12,15 @@
pkgs = import nixpkgs { inherit system; };
in
{
packages.${system}.hello-world = pkgs.callPackage ./packages/hello-world.nix { };
packages.${system} = rec {
hello-world = pkgs.callPackage ./packages/hello-world.nix { };
xonsh = pkgs.callPackage ./packages/xonsh.nix { };
default = hello-world;
};
overlays.default = final: prev: {
hello-world = final.callPackage ./packages/hello-world.nix { };
xonsh = final.callPackage ./packages/xonsh.nix { };
};
devShells.${system}.default = pkgs.mkShell {