added stalewood
ci/woodpecker/push/arm64 Pipeline was successful
ci/woodpecker/push/amd64 Pipeline was successful

This commit is contained in:
Oleks
2026-05-22 23:16:19 +03:00
parent ca88d13535
commit b38558cdcf
2 changed files with 32 additions and 0 deletions
+11
View File
@@ -26,6 +26,13 @@
url = "github:manelinux/nix-deps";
inputs.nixpkgs.follows = "nixpkgs";
};
# stalewood — find/reap merged git worktrees. Ships its own flake;
# re-expose its package (mirrors the nix-deps pattern).
stalewood = {
url = "github:retif/stalewood";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@@ -37,6 +44,7 @@
hyprspace,
antigravity-nix,
nix-deps,
stalewood,
...
}:
let
@@ -104,6 +112,9 @@
# nix-deps' flake only outputs eachDefaultSystem (no s390x), so
# gate it on the same native x86_64/aarch64 condition.
nix-deps = nix-deps.packages.${sys}.default;
# stalewood — re-exposed from its own flake. No s390x output,
# so it rides the same native-only gate.
stalewood = stalewood.packages.${sys}.default;
};
# Overlay providing Hyprspace. Requires `pkgs.hyprland` to be present