Compare commits
1 commit
8dc7ee9864
...
17fba966aa
Author | SHA1 | Date | |
---|---|---|---|
raito | 17fba966aa |
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
result
|
result
|
||||||
.gcroots
|
.gcroots
|
||||||
config.tf.json
|
config.tf.json
|
||||||
|
.terraform
|
||||||
|
|
23
flake.nix
23
flake.nix
|
@ -31,7 +31,12 @@
|
||||||
terraform = pkgs.opentofu;
|
terraform = pkgs.opentofu;
|
||||||
terraformCfg = terranix.lib.terranixConfiguration {
|
terraformCfg = terranix.lib.terranixConfiguration {
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [ ];
|
modules = [
|
||||||
|
./terraform
|
||||||
|
{
|
||||||
|
bagel.hydra.enable = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -46,6 +51,16 @@
|
||||||
${lib.getExe terraform} apply
|
${lib.getExe terraform} apply
|
||||||
'');
|
'');
|
||||||
};
|
};
|
||||||
|
plan = {
|
||||||
|
type = "app";
|
||||||
|
program = toString (pkgs.writers.writeBash "plan" ''
|
||||||
|
set -eo pipefail
|
||||||
|
rm -f config.tf.json
|
||||||
|
cp ${terraformCfg} config.tf.json
|
||||||
|
${lib.getExe terraform} init
|
||||||
|
${lib.getExe terraform} plan
|
||||||
|
'');
|
||||||
|
};
|
||||||
# nix run ".#destroy"
|
# nix run ".#destroy"
|
||||||
destroy = {
|
destroy = {
|
||||||
type = "app";
|
type = "app";
|
||||||
|
@ -58,6 +73,12 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
defaultApp.${system} = self.apps.${system}.apply;
|
defaultApp.${system} = self.apps.${system}.apply;
|
||||||
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
pkgs.opentofu
|
||||||
|
pkgs.colmena
|
||||||
|
];
|
||||||
|
};
|
||||||
colmena = {
|
colmena = {
|
||||||
meta.nixpkgs = import nixpkgs {
|
meta.nixpkgs = import nixpkgs {
|
||||||
localSystem = system;
|
localSystem = system;
|
||||||
|
|
5
terraform/default.nix
Normal file
5
terraform/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hydra.nix
|
||||||
|
];
|
||||||
|
}
|
72
terraform/hydra.nix
Normal file
72
terraform/hydra.nix
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
{ lib, config, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkEnableOption mkIf types mkOption;
|
||||||
|
cfg = config.bagel.hydra;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.bagel.hydra = {
|
||||||
|
enable = mkEnableOption "the Hydra jobsets";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
terraform.required_providers.hydra = {
|
||||||
|
version = "~> 0.1";
|
||||||
|
source = "DeterminateSystems/hydra";
|
||||||
|
};
|
||||||
|
|
||||||
|
provider.hydra = {
|
||||||
|
host = "https://hydra.bagel.delroth.net";
|
||||||
|
# username/password are provided via HYDRA_USERNAME/HYDRA_PASSWORD
|
||||||
|
};
|
||||||
|
|
||||||
|
resource.hydra_project.forkos = {
|
||||||
|
name = "forkos";
|
||||||
|
display_name = "ForkOS";
|
||||||
|
description = "ForkOS packages collection";
|
||||||
|
homepage = "https://cl.forkos.org";
|
||||||
|
owner = "raito";
|
||||||
|
enabled = true;
|
||||||
|
visible = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
resource.hydra_jobset.raito-nixos-rolling-small = {
|
||||||
|
project = config.resource.hydra_project.forkos.name;
|
||||||
|
state = "enabled";
|
||||||
|
visible = true;
|
||||||
|
name = "raito-nixos-rolling-small";
|
||||||
|
type = "legacy";
|
||||||
|
description = "master branch for raito-nixos";
|
||||||
|
|
||||||
|
nix_expression = {
|
||||||
|
file = "pkgs/top-level/release.nix";
|
||||||
|
input = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
|
check_interval = 0;
|
||||||
|
scheduling_shares = 3000;
|
||||||
|
keep_evaluations = 3;
|
||||||
|
|
||||||
|
email_notifications = false;
|
||||||
|
|
||||||
|
input = [
|
||||||
|
{
|
||||||
|
name = "nixpkgs";
|
||||||
|
type = "git";
|
||||||
|
value = "https://cl.forkos.org/nixpkgs";
|
||||||
|
notify_committers = false;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "officialRelease";
|
||||||
|
type = "boolean";
|
||||||
|
value = "false";
|
||||||
|
notify_committers = false;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "supportedSystems";
|
||||||
|
type = "nix";
|
||||||
|
value = ''[ "x86_64-linux" ]'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue