1
0
Fork 0
mirror of https://github.com/hyprwm/Hyprland synced 2025-04-06 15:32:09 +02:00

nix: add hydraJobs output for aggregating Hyprland build jobs

This commit is contained in:
raf 2025-02-05 14:55:33 +00:00 committed by GitHub
parent 873bff390e
commit 64591c85aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -157,5 +157,11 @@
nixosModules.default = import ./nix/module.nix inputs;
homeManagerModules.default = import ./nix/hm-module.nix self;
# Hydra build jobs
# Recent versions of Hydra can aggregate jobsets from 'hydraJobs' intead of a release.nix
# or similar. Remember to filter large or incompatible attributes here. More eval jobs can
# be added by merging, e.g., self.packages // self.devShells.
hydraJobs = self.packages;
};
}