hydra: switch to fork
This commit is contained in:
parent
5f62fc66cb
commit
2759825916
2 changed files with 29 additions and 0 deletions
18
flake.lock
generated
18
flake.lock
generated
|
@ -147,6 +147,23 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"hydra": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1726454607,
|
||||||
|
"narHash": "sha256-wgrT9T6f1VRwTGSKX6SzWIQ/86hViotAhxfSEYVvp6A=",
|
||||||
|
"owner": "qowoz",
|
||||||
|
"repo": "hydra",
|
||||||
|
"rev": "e8f81311f67ee5e86a3c10453b8609695f66e9d7",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "qowoz",
|
||||||
|
"ref": "community",
|
||||||
|
"repo": "hydra",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"lite-config": {
|
"lite-config": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1723691425,
|
"lastModified": 1723691425,
|
||||||
|
@ -304,6 +321,7 @@
|
||||||
"empty": "empty",
|
"empty": "empty",
|
||||||
"flake-compat": "flake-compat",
|
"flake-compat": "flake-compat",
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
|
"hydra": "hydra",
|
||||||
"lite-config": "lite-config",
|
"lite-config": "lite-config",
|
||||||
"nix-darwin": "nix-darwin",
|
"nix-darwin": "nix-darwin",
|
||||||
"nix-index-database": "nix-index-database",
|
"nix-index-database": "nix-index-database",
|
||||||
|
|
11
flake.nix
11
flake.nix
|
@ -24,6 +24,8 @@
|
||||||
flake-compat.url = "github:nix-community/flake-compat";
|
flake-compat.url = "github:nix-community/flake-compat";
|
||||||
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||||
|
hydra.flake = false;
|
||||||
|
hydra.url = "github:qowoz/hydra/community";
|
||||||
lite-config.url = "github:yelite/lite-config";
|
lite-config.url = "github:yelite/lite-config";
|
||||||
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
|
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
nix-darwin.url = "github:LnL7/nix-darwin";
|
nix-darwin.url = "github:LnL7/nix-darwin";
|
||||||
|
@ -63,6 +65,15 @@
|
||||||
{
|
{
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "terraform" ];
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "terraform" ];
|
||||||
|
overlays = [
|
||||||
|
(final: prev: {
|
||||||
|
hydra = (prev.hydra.override { nix = final.nixVersions.nix_2_22; }).overrideAttrs (o: {
|
||||||
|
version = inputs.hydra.shortRev;
|
||||||
|
src = inputs.hydra;
|
||||||
|
buildInputs = o.buildInputs ++ [ final.perlPackages.DBIxClassHelpers ];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
hostModuleDir = ./hosts;
|
hostModuleDir = ./hosts;
|
||||||
|
|
Loading…
Add table
Reference in a new issue