Skip to content

Commit

Permalink
Make the in-tree package the default package
Browse files Browse the repository at this point in the history
There is an overlay for the `hydra` name, but `hydra_unstable` was used, which can refer to the nixpkgs package and lead to and outdated hydra version and requires configuring the correct package attribute downstream.
  • Loading branch information
mweinelt authored Oct 19, 2024
1 parent c69e301 commit 1222ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos-modules/hydra.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ in

package = mkOption {
type = types.path;
default = pkgs.hydra_unstable;
default = pkgs.hydra;
defaultText = literalExpression "pkgs.hydra";
description = "The Hydra package.";
};
Expand Down

0 comments on commit 1222ba0

Please sign in to comment.