forked from malobeo/infrastructure
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
9c55854987
|
|||
| 8e7c9141c2 | |||
|
ea2ba8637b
|
|||
| c40d84ba4d | |||
|
|
bd859dd40d | ||
|
3ccd73788c
|
|||
| b2fc2d126f | |||
| bf3f4db1b2 | |||
| f4614f2887 | |||
| 07d7f3b882 |
@@ -2,7 +2,7 @@ name: Weekly Flake Update
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 4"
|
- cron: "0 4 /14 * *"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
@@ -102,6 +102,18 @@ jobs:
|
|||||||
-L "bump"
|
-L "bump"
|
||||||
-t "$COMMIT_MSG"
|
-t "$COMMIT_MSG"
|
||||||
-d "$COMMIT_DESC"
|
-d "$COMMIT_DESC"
|
||||||
|
- name: close other bump requests
|
||||||
|
run: |
|
||||||
|
for i in $(tea pr -o simple | grep "Automatic Nixpkgs update" | awk '{print $1}')
|
||||||
|
do
|
||||||
|
if [ "$i" = "" ]
|
||||||
|
then
|
||||||
|
echo "No bumps to close"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
tea pr close $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
- name: Skip pull request
|
- name: Skip pull request
|
||||||
if: steps.no-pr.outcome == 'failure'
|
if: steps.no-pr.outcome == 'failure'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
name: Weekly Flake Update
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- synchronize
|
|
||||||
- edited
|
|
||||||
- reopened
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
Explore-Gitea-Actions:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
|
||||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
||||||
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
|
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
||||||
- name: List files in the repository
|
|
||||||
run: |
|
|
||||||
ls ${{ github.workspace }}
|
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
||||||
- name: Check for string parsing
|
|
||||||
run: |
|
|
||||||
var=$(echo "${{ github.ref }}" | cut -d / -f 3)
|
|
||||||
echo "$var"
|
|
||||||
|
|
||||||
63
.gitea/workflows/hydra-callback.yml
Normal file
63
.gitea/workflows/hydra-callback.yml
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
name: Hydra callback
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
paths:
|
||||||
|
- '**.nix'
|
||||||
|
- flake.lock
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
paths:
|
||||||
|
- '**.nix'
|
||||||
|
- flake.lock
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
on_pr:
|
||||||
|
if: github.event.pull_request
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
NIXPKGS_ALLOW_UNFREE: 1
|
||||||
|
steps:
|
||||||
|
- name: Install sudo
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y sudo
|
||||||
|
- name: Set up Nix
|
||||||
|
uses: https://github.com/cachix/install-nix-action@v31
|
||||||
|
with:
|
||||||
|
github_access_token: ${{ secrets.AHTLONS_GITHUB_TOKEN }}
|
||||||
|
- name: Find pr number
|
||||||
|
run: |
|
||||||
|
echo PR=$(echo "${{ github.ref }}" | cut -d / -f 3) >> "$GITHUB_ENV"
|
||||||
|
- name: run hydra wait
|
||||||
|
timeout-minutes: 200
|
||||||
|
run: |
|
||||||
|
echo "Running now @ pr no $PR"
|
||||||
|
nix run nixpkgs#hydra-cli -- -H https://hydra.dynamicdiscord.de jobset-wait malobeo2 "$PR"
|
||||||
|
|
||||||
|
on_push:
|
||||||
|
if: github.event.push
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
NIXPKGS_ALLOW_UNFREE: 1
|
||||||
|
steps:
|
||||||
|
- name: Install sudo
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y sudo
|
||||||
|
- name: Set up Nix
|
||||||
|
uses: https://github.com/cachix/install-nix-action@v31
|
||||||
|
with:
|
||||||
|
github_access_token: ${{ secrets.AHTLONS_GITHUB_TOKEN }}
|
||||||
|
- name: run hydra wait
|
||||||
|
timeout-minutes: 200
|
||||||
|
run: |
|
||||||
|
echo "Running now @ master"
|
||||||
|
nix run nixpkgs#hydra-cli -- -H https://hydra.dynamicdiscord.de jobset-wait malobeo2 master
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"type": 0,
|
"type": 0,
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixexpr": {
|
"nixexpr": {
|
||||||
"value": "https://git.dynamicdiscord.de/ahtlon/infrastructure master",
|
"value": "https://git.dynamicdiscord.de/malobeo/infrastructure master",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"emailresponsible": false
|
"emailresponsible": false
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,350 +0,0 @@
|
|||||||
{
|
|
||||||
"allow_maintainer_edit": false,
|
|
||||||
"assignee": null,
|
|
||||||
"assignees": null,
|
|
||||||
"base": {
|
|
||||||
"label": "master",
|
|
||||||
"ref": "master",
|
|
||||||
"repo": {
|
|
||||||
"allow_fast_forward_only_merge": false,
|
|
||||||
"allow_manual_merge": false,
|
|
||||||
"allow_merge_commits": true,
|
|
||||||
"allow_rebase": true,
|
|
||||||
"allow_rebase_explicit": true,
|
|
||||||
"allow_rebase_update": true,
|
|
||||||
"allow_squash_merge": true,
|
|
||||||
"archived": false,
|
|
||||||
"archived_at": "1970-01-01T01:00:00+01:00",
|
|
||||||
"autodetect_manual_merge": false,
|
|
||||||
"avatar_url": "",
|
|
||||||
"clone_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure.git",
|
|
||||||
"created_at": "2024-10-24T19:38:14+02:00",
|
|
||||||
"default_allow_maintainer_edit": false,
|
|
||||||
"default_branch": "master",
|
|
||||||
"default_delete_branch_after_merge": false,
|
|
||||||
"default_merge_style": "merge",
|
|
||||||
"description": "",
|
|
||||||
"empty": false,
|
|
||||||
"fork": true,
|
|
||||||
"forks_count": 0,
|
|
||||||
"full_name": "ahtlon/infrastructure",
|
|
||||||
"has_actions": true,
|
|
||||||
"has_code": true,
|
|
||||||
"has_issues": false,
|
|
||||||
"has_packages": false,
|
|
||||||
"has_projects": false,
|
|
||||||
"has_pull_requests": true,
|
|
||||||
"has_releases": false,
|
|
||||||
"has_wiki": false,
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure",
|
|
||||||
"id": 29,
|
|
||||||
"ignore_whitespace_conflicts": false,
|
|
||||||
"internal": false,
|
|
||||||
"language": "",
|
|
||||||
"languages_url": "https://git.dynamicdiscord.de/api/v1/repos/ahtlon/infrastructure/languages",
|
|
||||||
"licenses": [],
|
|
||||||
"link": "",
|
|
||||||
"mirror": false,
|
|
||||||
"mirror_interval": "",
|
|
||||||
"mirror_updated": "0001-01-01T00:00:00Z",
|
|
||||||
"name": "infrastructure",
|
|
||||||
"object_format_name": "sha1",
|
|
||||||
"open_issues_count": 0,
|
|
||||||
"open_pr_counter": 5,
|
|
||||||
"original_url": "",
|
|
||||||
"owner": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/7399d018a0bcee0f2da113bdeeafec029316d8e8ce774b829de4125b026c0599",
|
|
||||||
"created": "2024-10-23T17:19:18+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "ahtlon@noreply.git.dynamicdiscord.de",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon",
|
|
||||||
"id": 8,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "ahtlon",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "ahtlon",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"parent": {
|
|
||||||
"allow_fast_forward_only_merge": false,
|
|
||||||
"allow_manual_merge": false,
|
|
||||||
"allow_merge_commits": true,
|
|
||||||
"allow_rebase": true,
|
|
||||||
"allow_rebase_explicit": true,
|
|
||||||
"allow_rebase_update": true,
|
|
||||||
"allow_squash_merge": true,
|
|
||||||
"archived": false,
|
|
||||||
"archived_at": "1970-01-01T01:00:00+01:00",
|
|
||||||
"autodetect_manual_merge": false,
|
|
||||||
"avatar_url": "",
|
|
||||||
"clone_url": "https://git.dynamicdiscord.de/malobeo/infrastructure.git",
|
|
||||||
"created_at": "2022-10-04T18:35:43+02:00",
|
|
||||||
"default_allow_maintainer_edit": false,
|
|
||||||
"default_branch": "master",
|
|
||||||
"default_delete_branch_after_merge": false,
|
|
||||||
"default_merge_style": "merge",
|
|
||||||
"description": "",
|
|
||||||
"empty": false,
|
|
||||||
"fork": false,
|
|
||||||
"forks_count": 1,
|
|
||||||
"full_name": "malobeo/infrastructure",
|
|
||||||
"has_actions": true,
|
|
||||||
"has_code": true,
|
|
||||||
"has_issues": true,
|
|
||||||
"has_packages": false,
|
|
||||||
"has_projects": true,
|
|
||||||
"has_pull_requests": true,
|
|
||||||
"has_releases": true,
|
|
||||||
"has_wiki": true,
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo/infrastructure",
|
|
||||||
"id": 15,
|
|
||||||
"ignore_whitespace_conflicts": false,
|
|
||||||
"internal": false,
|
|
||||||
"internal_tracker": {
|
|
||||||
"allow_only_contributors_to_track_time": true,
|
|
||||||
"enable_issue_dependencies": true,
|
|
||||||
"enable_time_tracker": true
|
|
||||||
},
|
|
||||||
"language": "",
|
|
||||||
"languages_url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure/languages",
|
|
||||||
"licenses": [],
|
|
||||||
"link": "",
|
|
||||||
"mirror": false,
|
|
||||||
"mirror_interval": "",
|
|
||||||
"mirror_updated": "0001-01-01T00:00:00Z",
|
|
||||||
"name": "infrastructure",
|
|
||||||
"object_format_name": "sha1",
|
|
||||||
"open_issues_count": 40,
|
|
||||||
"open_pr_counter": 4,
|
|
||||||
"original_url": "",
|
|
||||||
"owner": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/9ea8af20ca015cb078b2971cd4e91e6d",
|
|
||||||
"created": "2023-03-29T17:26:16+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo",
|
|
||||||
"id": 7,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "malobeo",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "malobeo",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"admin": false,
|
|
||||||
"pull": true,
|
|
||||||
"push": false
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"projects_mode": "",
|
|
||||||
"release_counter": 0,
|
|
||||||
"size": 2878,
|
|
||||||
"ssh_url": "ssh://gitea@git.dynamicdiscord.de:23428/malobeo/infrastructure.git",
|
|
||||||
"stars_count": 1,
|
|
||||||
"template": false,
|
|
||||||
"topics": [],
|
|
||||||
"updated_at": "2026-03-12T01:11:13+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure",
|
|
||||||
"watchers_count": 2,
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"admin": false,
|
|
||||||
"pull": true,
|
|
||||||
"push": false
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"projects_mode": "all",
|
|
||||||
"release_counter": 0,
|
|
||||||
"size": 14507,
|
|
||||||
"ssh_url": "ssh://gitea@git.dynamicdiscord.de:23428/ahtlon/infrastructure.git",
|
|
||||||
"stars_count": 0,
|
|
||||||
"template": false,
|
|
||||||
"topics": [],
|
|
||||||
"updated_at": "2026-03-12T01:05:43+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/api/v1/repos/ahtlon/infrastructure",
|
|
||||||
"watchers_count": 1,
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"repo_id": 29,
|
|
||||||
"sha": "dacdb2214ea6ff645c444ce0eaab68c317f0a616"
|
|
||||||
},
|
|
||||||
"body": "",
|
|
||||||
"closed_at": null,
|
|
||||||
"comments": 0,
|
|
||||||
"created_at": "2026-03-11T17:29:55+01:00",
|
|
||||||
"diff_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8.diff",
|
|
||||||
"draft": false,
|
|
||||||
"due_date": null,
|
|
||||||
"head": {
|
|
||||||
"label": "nixpkgs_bump_20260305",
|
|
||||||
"ref": "nixpkgs_bump_20260305",
|
|
||||||
"repo": {
|
|
||||||
"allow_fast_forward_only_merge": false,
|
|
||||||
"allow_manual_merge": false,
|
|
||||||
"allow_merge_commits": true,
|
|
||||||
"allow_rebase": true,
|
|
||||||
"allow_rebase_explicit": true,
|
|
||||||
"allow_rebase_update": true,
|
|
||||||
"allow_squash_merge": true,
|
|
||||||
"archived": false,
|
|
||||||
"archived_at": "1970-01-01T01:00:00+01:00",
|
|
||||||
"autodetect_manual_merge": false,
|
|
||||||
"avatar_url": "",
|
|
||||||
"clone_url": "https://git.dynamicdiscord.de/malobeo/infrastructure.git",
|
|
||||||
"created_at": "2022-10-04T18:35:43+02:00",
|
|
||||||
"default_allow_maintainer_edit": false,
|
|
||||||
"default_branch": "master",
|
|
||||||
"default_delete_branch_after_merge": false,
|
|
||||||
"default_merge_style": "merge",
|
|
||||||
"description": "",
|
|
||||||
"empty": false,
|
|
||||||
"fork": false,
|
|
||||||
"forks_count": 1,
|
|
||||||
"full_name": "malobeo/infrastructure",
|
|
||||||
"has_actions": true,
|
|
||||||
"has_code": true,
|
|
||||||
"has_issues": true,
|
|
||||||
"has_packages": false,
|
|
||||||
"has_projects": true,
|
|
||||||
"has_pull_requests": true,
|
|
||||||
"has_releases": true,
|
|
||||||
"has_wiki": true,
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo/infrastructure",
|
|
||||||
"id": 15,
|
|
||||||
"ignore_whitespace_conflicts": false,
|
|
||||||
"internal": false,
|
|
||||||
"internal_tracker": {
|
|
||||||
"allow_only_contributors_to_track_time": true,
|
|
||||||
"enable_issue_dependencies": true,
|
|
||||||
"enable_time_tracker": true
|
|
||||||
},
|
|
||||||
"language": "",
|
|
||||||
"languages_url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure/languages",
|
|
||||||
"licenses": [],
|
|
||||||
"link": "",
|
|
||||||
"mirror": false,
|
|
||||||
"mirror_interval": "",
|
|
||||||
"mirror_updated": "0001-01-01T00:00:00Z",
|
|
||||||
"name": "infrastructure",
|
|
||||||
"object_format_name": "sha1",
|
|
||||||
"open_issues_count": 40,
|
|
||||||
"open_pr_counter": 4,
|
|
||||||
"original_url": "",
|
|
||||||
"owner": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/9ea8af20ca015cb078b2971cd4e91e6d",
|
|
||||||
"created": "2023-03-29T17:26:16+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo",
|
|
||||||
"id": 7,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "malobeo",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "malobeo",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"admin": false,
|
|
||||||
"pull": true,
|
|
||||||
"push": false
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"projects_mode": "",
|
|
||||||
"release_counter": 0,
|
|
||||||
"size": 2878,
|
|
||||||
"ssh_url": "ssh://gitea@git.dynamicdiscord.de:23428/malobeo/infrastructure.git",
|
|
||||||
"stars_count": 1,
|
|
||||||
"template": false,
|
|
||||||
"topics": [],
|
|
||||||
"updated_at": "2026-03-12T01:11:13+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure",
|
|
||||||
"watchers_count": 2,
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"repo_id": 15,
|
|
||||||
"sha": "7c66a24563d0e95c292aafeaa08056effc6152d9"
|
|
||||||
},
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8",
|
|
||||||
"id": 66,
|
|
||||||
"is_locked": false,
|
|
||||||
"labels": [],
|
|
||||||
"merge_base": "344eeb437b0aa29baee1227e48878f987e21e296",
|
|
||||||
"merge_commit_sha": null,
|
|
||||||
"mergeable": true,
|
|
||||||
"merged": false,
|
|
||||||
"merged_at": null,
|
|
||||||
"merged_by": null,
|
|
||||||
"milestone": null,
|
|
||||||
"number": 8,
|
|
||||||
"patch_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8.patch",
|
|
||||||
"pin_order": 0,
|
|
||||||
"requested_reviewers": null,
|
|
||||||
"requested_reviewers_teams": null,
|
|
||||||
"state": "open",
|
|
||||||
"target_repo_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure.git",
|
|
||||||
"title": "Update flake.lock",
|
|
||||||
"updated_at": "2026-03-11T17:29:55+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8",
|
|
||||||
"user": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/7399d018a0bcee0f2da113bdeeafec029316d8e8ce774b829de4125b026c0599",
|
|
||||||
"created": "2024-10-23T17:19:18+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "ahtlon@noreply.git.dynamicdiscord.de",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon",
|
|
||||||
"id": 8,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "ahtlon",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "ahtlon",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
30
flake.lock
generated
30
flake.lock
generated
@@ -126,11 +126,11 @@
|
|||||||
"spectrum": "spectrum"
|
"spectrum": "spectrum"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1773018425,
|
"lastModified": 1776340739,
|
||||||
"narHash": "sha256-fpgZBmZpKoEXEowBK/6m8g9FcOLWQ4UxhXHqCw2CpSM=",
|
"narHash": "sha256-s4FDictJlPtY6Shd6scG5hgrDMiHth09+svtvTA5NLA=",
|
||||||
"owner": "astro",
|
"owner": "astro",
|
||||||
"repo": "microvm.nix",
|
"repo": "microvm.nix",
|
||||||
"rev": "25ebda3c558e923720c965832dc9a04f559a055c",
|
"rev": "2f2f62fdfdca2750e3399f66bd03986ab967e5ca",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -177,11 +177,11 @@
|
|||||||
},
|
},
|
||||||
"nixos-hardware": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1772972630,
|
"lastModified": 1777917524,
|
||||||
"narHash": "sha256-mUJxsNOrBMNOUJzN0pfdVJ1r2pxeqm9gI/yIKXzVVbk=",
|
"narHash": "sha256-k+LVe9YaO2BEPB9AaCtTtOMCeGi4dxDo6gt4Un3qoPY=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "3966ce987e1a9a164205ac8259a5fe8a64528f72",
|
"rev": "df7783100babf59001340a7a874ba3824e441ecb",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -209,11 +209,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-unstable": {
|
"nixpkgs-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1773282481,
|
"lastModified": 1777578337,
|
||||||
"narHash": "sha256-b/GV2ysM8mKHhinse2wz+uP37epUrSE+sAKXy/xvBY4=",
|
"narHash": "sha256-Ad49moKWeXtKBJNy2ebiTQUEgdLyvGmTeykAQ9xM+Z4=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "fe416aaedd397cacb33a610b33d60ff2b431b127",
|
"rev": "15f4ee454b1dce334612fa6843b3e05cf546efab",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -225,11 +225,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1773375660,
|
"lastModified": 1777673416,
|
||||||
"narHash": "sha256-SEzUWw2Rf5Ki3bcM26nSKgbeoqi2uYy8IHVBqOKjX3w=",
|
"narHash": "sha256-5c2POKPOjU40Kh0MirOdScBLG0bu9TAuPYAtPRNZMBs=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "3e20095fe3c6cbb1ddcef89b26969a69a1570776",
|
"rev": "26ef669cffa904b6f6832ab57b77892a37c1a671",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -264,11 +264,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1773096132,
|
"lastModified": 1777944972,
|
||||||
"narHash": "sha256-M3zEnq9OElB7zqc+mjgPlByPm1O5t2fbUrH3t/Hm5Ag=",
|
"narHash": "sha256-VfGRo1qTBKOe3s2gOv8LSoA6Fk19PvBlwQ1ECN0Evn8=",
|
||||||
"owner": "Mic92",
|
"owner": "Mic92",
|
||||||
"repo": "sops-nix",
|
"repo": "sops-nix",
|
||||||
"rev": "d1ff3b1034d5bab5d7d8086a7803c5a5968cd784",
|
"rev": "c591bf665727040c6cc5cb409079acb22dcce33c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
350
gitea2.json
350
gitea2.json
@@ -1,350 +0,0 @@
|
|||||||
AAAAAA{
|
|
||||||
"allow_maintainer_edit": false,
|
|
||||||
"assignee": null,
|
|
||||||
"assignees": null,
|
|
||||||
"base": {
|
|
||||||
"label": "master",
|
|
||||||
"ref": "master",dd
|
|
||||||
"repo": {
|
|
||||||
"allow_fast_ddasdad_only_merge": false,
|
|
||||||
"allow_manual_merge": false,
|
|
||||||
"allow_merge_commits": true,
|
|
||||||
"allow_rebase": true,
|
|
||||||
"allow_rebase_explicit": true,
|
|
||||||
"allow_rebase_update": true,
|
|
||||||
"allow_squash_merge": true,
|
|
||||||
"archived": false,
|
|
||||||
"archived_at": "1970-01-01T01:00:00+01:00",
|
|
||||||
"autodetect_manual_merge": false,
|
|
||||||
"avatar_url": "",
|
|
||||||
"clone_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure.git",
|
|
||||||
"created_at": "2024-10-24T19:38:14+02:00",
|
|
||||||
"default_allow_maintainer_edit": false,
|
|
||||||
"default_branch": "master",
|
|
||||||
"default_delete_branch_after_merge": false,
|
|
||||||
"default_merge_style": "merge",
|
|
||||||
"description": "",
|
|
||||||
"empty": false,
|
|
||||||
"fork": true,
|
|
||||||
"forks_count": 0,
|
|
||||||
"full_name": "ahtlon/infrastructure",
|
|
||||||
"has_actions": true,
|
|
||||||
"has_code": true,
|
|
||||||
"has_issues": false,
|
|
||||||
"has_packages": false,
|
|
||||||
"has_projects": false,
|
|
||||||
"has_pull_requests": true,
|
|
||||||
"has_releases": false,
|
|
||||||
"has_wiki": false,
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure",
|
|
||||||
"id": 29,
|
|
||||||
"ignore_whitespace_conflicts": false,
|
|
||||||
"internal": false,
|
|
||||||
"language": "",
|
|
||||||
"languages_url": "https://git.dynamicdiscord.de/api/v1/repos/ahtlon/infrastructure/languages",
|
|
||||||
"licenses": [],
|
|
||||||
"link": "",
|
|
||||||
"mirror": false,
|
|
||||||
"mirror_interval": "",
|
|
||||||
"mirror_updated": "0001-01-01T00:00:00Z",
|
|
||||||
"name": "infrastructure",
|
|
||||||
"object_format_name": "sha1",
|
|
||||||
"open_issues_count": 0,
|
|
||||||
"open_pr_counter": 6,
|
|
||||||
"original_url": "",
|
|
||||||
"owner": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/7399d018a0bcee0f2da113bdeeafec029316d8e8ce774b829de4125b026c0599",
|
|
||||||
"created": "2024-10-23T17:19:18+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "ahtlon@noreply.git.dynamicdiscord.de",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon",
|
|
||||||
"id": 8,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "ahtlon",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "ahtlon",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"parent": {
|
|
||||||
"allow_fast_forward_only_merge": false,
|
|
||||||
"allow_manual_merge": false,
|
|
||||||
"allow_merge_commits": true,
|
|
||||||
"allow_rebase": true,
|
|
||||||
"allow_rebase_explicit": true,
|
|
||||||
"allow_rebase_update": true,
|
|
||||||
"allow_squash_merge": true,
|
|
||||||
"archived": false,
|
|
||||||
"archived_at": "1970-01-01T01:00:00+01:00",
|
|
||||||
"autodetect_manual_merge": false,
|
|
||||||
"avatar_url": "",
|
|
||||||
"clone_url": "https://git.dynamicdiscord.de/malobeo/infrastructure.git",
|
|
||||||
"created_at": "2022-10-04T18:35:43+02:00",
|
|
||||||
"default_allow_maintainer_edit": false,
|
|
||||||
"default_branch": "master",
|
|
||||||
"default_delete_branch_after_merge": false,
|
|
||||||
"default_merge_style": "merge",
|
|
||||||
"description": "",
|
|
||||||
"empty": false,
|
|
||||||
"fork": false,
|
|
||||||
"forks_count": 1,
|
|
||||||
"full_name": "malobeo/infrastructure",
|
|
||||||
"has_actions": true,
|
|
||||||
"has_code": true,
|
|
||||||
"has_issues": true,
|
|
||||||
"has_packages": false,
|
|
||||||
"has_projects": true,
|
|
||||||
"has_pull_requests": true,
|
|
||||||
"has_releases": true,
|
|
||||||
"has_wiki": true,
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo/infrastructure",
|
|
||||||
"id": 15,
|
|
||||||
"ignore_whitespace_conflicts": false,
|
|
||||||
"internal": false,
|
|
||||||
"internal_tracker": {
|
|
||||||
"allow_only_contributors_to_track_time": true,
|
|
||||||
"enable_issue_dependencies": true,
|
|
||||||
"enable_time_tracker": true
|
|
||||||
},
|
|
||||||
"language": "",
|
|
||||||
"languages_url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure/languages",
|
|
||||||
"licenses": [],
|
|
||||||
"link": "",
|
|
||||||
"mirror": false,
|
|
||||||
"mirror_interval": "",
|
|
||||||
"mirror_updated": "0001-01-01T00:00:00Z",
|
|
||||||
"name": "infrastructure",
|
|
||||||
"object_format_name": "sha1",
|
|
||||||
"open_issues_count": 40,
|
|
||||||
"open_pr_counter": 4,
|
|
||||||
"original_url": "",
|
|
||||||
"owner": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/9ea8af20ca015cb078b2971cd4e91e6d",
|
|
||||||
"created": "2023-03-29T17:26:16+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo",
|
|
||||||
"id": 7,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "malobeo",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "malobeo",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"admin": false,
|
|
||||||
"pull": true,
|
|
||||||
"push": false
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"projects_mode": "",
|
|
||||||
"release_counter": 0,
|
|
||||||
"size": 2878,
|
|
||||||
"ssh_url": "ssh://gitea@git.dynamicdiscord.de:23428/malobeo/infrastructure.git",
|
|
||||||
"stars_count": 1,
|
|
||||||
"template": false,
|
|
||||||
"topics": [],
|
|
||||||
"updated_at": "2026-03-12T01:11:13+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure",
|
|
||||||
"watchers_count": 2,
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"admin": false,
|
|
||||||
"pull": true,
|
|
||||||
"push": false
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"projects_mode": "all",
|
|
||||||
"release_counter": 0,
|
|
||||||
"size": 14584,
|
|
||||||
"ssh_url": "ssh://gitea@git.dynamicdiscord.de:23428/ahtlon/infrastructure.git",
|
|
||||||
"stars_count": 0,
|
|
||||||
"template": false,
|
|
||||||
"topics": [],
|
|
||||||
"updated_at": "2026-03-13T16:33:51+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/api/v1/repos/ahtlon/infrastructure",
|
|
||||||
"watchers_count": 1,
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"repo_id": 29,
|
|
||||||
"sha": "e73516fbe79022d12608e9616b75b3a388bd0e5f"
|
|
||||||
},
|
|
||||||
"body": "",
|
|
||||||
"closed_at": null,
|
|
||||||
"comments": 0,
|
|
||||||
"created_at": "2026-03-11T17:29:55+01:00",
|
|
||||||
"diff_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8.diff",
|
|
||||||
"draft": false,
|
|
||||||
"due_date": null,
|
|
||||||
"head": {
|
|
||||||
"label": "nixpkgs_bump_20260305",
|
|
||||||
"ref": "nixpkgs_bump_20260305",
|
|
||||||
"repo": {
|
|
||||||
"allow_fast_forward_only_merge": false,
|
|
||||||
"allow_manual_merge": false,
|
|
||||||
"allow_merge_commits": true,
|
|
||||||
"allow_rebase": true,
|
|
||||||
"allow_rebase_explicit": true,
|
|
||||||
"allow_rebase_update": true,
|
|
||||||
"allow_squash_merge": true,
|
|
||||||
"archived": false,
|
|
||||||
"archived_at": "1970-01-01T01:00:00+01:00",
|
|
||||||
"autodetect_manual_merge": false,
|
|
||||||
"avatar_url": "",
|
|
||||||
"clone_url": "https://git.dynamicdiscord.de/malobeo/infrastructure.git",
|
|
||||||
"created_at": "2022-10-04T18:35:43+02:00",
|
|
||||||
"default_allow_maintainer_edit": false,
|
|
||||||
"default_branch": "master",
|
|
||||||
"default_delete_branch_after_merge": false,
|
|
||||||
"default_merge_style": "merge",
|
|
||||||
"description": "",
|
|
||||||
"empty": false,
|
|
||||||
"fork": false,
|
|
||||||
"forks_count": 1,
|
|
||||||
"full_name": "malobeo/infrastructure",
|
|
||||||
"has_actions": true,
|
|
||||||
"has_code": true,
|
|
||||||
"has_issues": true,
|
|
||||||
"has_packages": false,
|
|
||||||
"has_projects": true,
|
|
||||||
"has_pull_requests": true,
|
|
||||||
"has_releases": true,
|
|
||||||
"has_wiki": true,
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo/infrastructure",
|
|
||||||
"id": 15,
|
|
||||||
"ignore_whitespace_conflicts": false,
|
|
||||||
"internal": false,
|
|
||||||
"internal_tracker": {
|
|
||||||
"allow_only_contributors_to_track_time": true,
|
|
||||||
"enable_issue_dependencies": true,
|
|
||||||
"enable_time_tracker": true
|
|
||||||
},
|
|
||||||
"language": "",
|
|
||||||
"languages_url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure/languages",
|
|
||||||
"licenses": [],
|
|
||||||
"link": "",
|
|
||||||
"mirror": false,
|
|
||||||
"mirror_interval": "",
|
|
||||||
"mirror_updated": "0001-01-01T00:00:00Z",
|
|
||||||
"name": "infrastructure",
|
|
||||||
"object_format_name": "sha1",
|
|
||||||
"open_issues_count": 40,
|
|
||||||
"open_pr_counter": 4,
|
|
||||||
"original_url": "",
|
|
||||||
"owner": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/9ea8af20ca015cb078b2971cd4e91e6d",
|
|
||||||
"created": "2023-03-29T17:26:16+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/malobeo",
|
|
||||||
"id": 7,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "malobeo",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "malobeo",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"permissions": {
|
|
||||||
"admin": false,
|
|
||||||
"pull": true,
|
|
||||||
"push": false
|
|
||||||
},
|
|
||||||
"private": false,
|
|
||||||
"projects_mode": "",
|
|
||||||
"release_counter": 0,
|
|
||||||
"size": 2878,
|
|
||||||
"ssh_url": "ssh://gitea@git.dynamicdiscord.de:23428/malobeo/infrastructure.git",
|
|
||||||
"stars_count": 1,
|
|
||||||
"template": false,
|
|
||||||
"topics": [],
|
|
||||||
"updated_at": "2026-03-12T01:11:13+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/api/v1/repos/malobeo/infrastructure",
|
|
||||||
"watchers_count": 2,
|
|
||||||
"website": ""
|
|
||||||
},
|
|
||||||
"repo_id": 15,
|
|
||||||
"sha": "7c66a24563d0e95c292aafeaa08056effc6152d9"
|
|
||||||
},
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8",
|
|
||||||
"id": 66,
|
|
||||||
"is_locked": false,
|
|
||||||
"labels": [],
|
|
||||||
"merge_base": "344eeb437b0aa29baee1227e48878f987e21e296",
|
|
||||||
"merge_commit_sha": null,
|
|
||||||
"mergeable": true,
|
|
||||||
"merged": false,
|
|
||||||
"merged_at": null,
|
|
||||||
"merged_by": null,
|
|
||||||
"milestone": null,
|
|
||||||
"number": 8,
|
|
||||||
"patch_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8.patch",
|
|
||||||
"pin_order": 0,
|
|
||||||
"requested_reviewers": null,
|
|
||||||
"requested_reviewers_teams": null,
|
|
||||||
"state": "open",
|
|
||||||
"target_repo_url": "https://git.dynamicdiscord.de/ahtlon/infrastructure.git",
|
|
||||||
"title": "Update flake.lock",
|
|
||||||
"updated_at": "2026-03-11T17:29:55+01:00",
|
|
||||||
"url": "https://git.dynamicdiscord.de/ahtlon/infrastructure/pulls/8",
|
|
||||||
"user": {
|
|
||||||
"active": false,
|
|
||||||
"avatar_url": "https://git.dynamicdiscord.de/avatars/7399d018a0bcee0f2da113bdeeafec029316d8e8ce774b829de4125b026c0599",
|
|
||||||
"created": "2024-10-23T17:19:18+02:00",
|
|
||||||
"description": "",
|
|
||||||
"email": "ahtlon@noreply.git.dynamicdiscord.de",
|
|
||||||
"followers_count": 0,
|
|
||||||
"following_count": 0,
|
|
||||||
"full_name": "",
|
|
||||||
"html_url": "https://git.dynamicdiscord.de/ahtlon",
|
|
||||||
"id": 8,
|
|
||||||
"is_admin": false,
|
|
||||||
"language": "",
|
|
||||||
"last_login": "0001-01-01T00:00:00Z",
|
|
||||||
"location": "",
|
|
||||||
"login": "ahtlon",
|
|
||||||
"login_name": "",
|
|
||||||
"prohibit_login": false,
|
|
||||||
"restricted": false,
|
|
||||||
"source_id": 0,
|
|
||||||
"starred_repos_count": 0,
|
|
||||||
"username": "ahtlon",
|
|
||||||
"visibility": "public",
|
|
||||||
"website": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -55,7 +55,7 @@ in
|
|||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = ''
|
ExecStart = ''
|
||||||
${pkgs.python3}/bin/python3 ${inputs.self + /scripts/gitea_hydra_server.py} \
|
${pkgs.python3}/bin/python3 ${../../../scripts/gitea_hydra_server.py} \
|
||||||
--baseurl ${cfg.baseurl} \
|
--baseurl ${cfg.baseurl} \
|
||||||
--owner ${cfg.owner} \
|
--owner ${cfg.owner} \
|
||||||
--repo ${cfg.repo} \
|
--repo ${cfg.repo} \
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
"hetzner" = {
|
"hetzner" = {
|
||||||
role = "client";
|
role = "client";
|
||||||
address = "10.100.0.7";
|
address = "10.100.0.6";
|
||||||
allowedIPs = [ "10.100.0.6/32" ];
|
allowedIPs = [ "10.100.0.6/32" ];
|
||||||
publicKey = "csRzgwtnzmSLeLkSwTwEOrdKq55UOxZacR5D3GopCTQ=";
|
publicKey = "csRzgwtnzmSLeLkSwTwEOrdKq55UOxZacR5D3GopCTQ=";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ in
|
|||||||
settings = {
|
settings = {
|
||||||
trusted_domains = [ "cloud.malobeo.org" "cloud.hq.malobeo.org" ];
|
trusted_domains = [ "cloud.malobeo.org" "cloud.hq.malobeo.org" ];
|
||||||
trusted_proxies = [ hosts.malobeo.hosts.fanny.network.address ];
|
trusted_proxies = [ hosts.malobeo.hosts.fanny.network.address ];
|
||||||
|
overwriteprotocol = "https";
|
||||||
"maintenance_window_start" = "1";
|
"maintenance_window_start" = "1";
|
||||||
"default_phone_region" = "DE";
|
"default_phone_region" = "DE";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ config, self, lib, pkgs, ... }:
|
{ config, self, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
@@ -58,6 +58,7 @@ in
|
|||||||
|
|
||||||
services.pretalx = {
|
services.pretalx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = inputs.nixpkgs-unstable.legacyPackages."x86_64-linux".pretalx;
|
||||||
celery.extraArgs = [
|
celery.extraArgs = [
|
||||||
"--concurrency=${toString config.microvm.vcpu}"
|
"--concurrency=${toString config.microvm.vcpu}"
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -118,6 +118,7 @@ in (utils.lib.eachSystem (builtins.filter filter_system utils.lib.defaultSystems
|
|||||||
users.imports = [ ./machines/modules/malobeo/users.nix ];
|
users.imports = [ ./machines/modules/malobeo/users.nix ];
|
||||||
backup.imports = [ ./machines/modules/malobeo/backup.nix ];
|
backup.imports = [ ./machines/modules/malobeo/backup.nix ];
|
||||||
printing.imports = [ ./machines/modules/malobeo/printing.nix ];
|
printing.imports = [ ./machines/modules/malobeo/printing.nix ];
|
||||||
|
gitea-translator.imports = [ ./machines/modules/malobeo/gitea_translator.nix ];
|
||||||
};
|
};
|
||||||
|
|
||||||
hydraJobs = nixpkgs.lib.mapAttrs (_: nixpkgs.lib.hydraJob) (
|
hydraJobs = nixpkgs.lib.mapAttrs (_: nixpkgs.lib.hydraJob) (
|
||||||
|
|||||||
Reference in New Issue
Block a user