mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
chore(ci): minor updates
This commit is contained in:
parent
b86a604de5
commit
4662495775
5 changed files with 19 additions and 5 deletions
9
.terraformignore
Normal file
9
.terraformignore
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
/**
|
||||||
|
!tf/
|
||||||
|
tf/.terraform*
|
||||||
|
tf/*.tfvars*
|
||||||
|
!systems/
|
||||||
|
#systems/*/*.nix
|
||||||
|
systems/*/secrets.yaml
|
||||||
|
!ci/
|
||||||
|
/**.nix
|
||||||
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -41,11 +41,11 @@
|
||||||
"ci": {
|
"ci": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1752719221,
|
"lastModified": 1756937251,
|
||||||
"narHash": "sha256-jUmXg9P/2dVGjrKxhVJ/3dzFJZ969QrfpHDPe+f6cLU=",
|
"narHash": "sha256-VIqMPRwLI2eCJFi8f3CqUk7jrTJ2AcWlI9z4d/H9+Do=",
|
||||||
"owner": "arcnmx",
|
"owner": "arcnmx",
|
||||||
"repo": "ci",
|
"repo": "ci",
|
||||||
"rev": "ada9995f7539a7d22d71b6f04227fd34a54d2ac0",
|
"rev": "6ea24db22eb6735ed616d69de6dc435fce60d322",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ in {
|
||||||
rust189warning
|
rust189warning
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
in if _389-ds-base.version == "3.1.3"
|
in if _389-ds-base.version == "3.1.3" && _389-ds-base.patches or [] == []
|
||||||
then drv
|
then drv
|
||||||
else lib.warn "389-ds-base patch probably no longer needed" _389-ds-base;
|
else lib.warn "389-ds-base patch probably no longer needed" _389-ds-base;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,10 @@ _: {
|
||||||
modules = [
|
modules = [
|
||||||
./nixos.nix
|
./nixos.nix
|
||||||
];
|
];
|
||||||
|
access.online = {
|
||||||
|
# temporarily offline for server migration
|
||||||
|
available = false;
|
||||||
|
};
|
||||||
exports = {
|
exports = {
|
||||||
services = {
|
services = {
|
||||||
nginx.enable = true;
|
nginx.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ terraform {
|
||||||
}
|
}
|
||||||
cloudflare = {
|
cloudflare = {
|
||||||
source = "cloudflare/cloudflare"
|
source = "cloudflare/cloudflare"
|
||||||
version = ">= 4.22.0"
|
# XXX: 5.0 requires manual migration
|
||||||
|
version = "~> 4.22"
|
||||||
}
|
}
|
||||||
proxmox = {
|
proxmox = {
|
||||||
source = "bpg/proxmox"
|
source = "bpg/proxmox"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue