Merge pull request 'add dev flake pattern' (#4245) from private-flake into main
Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4245
This commit is contained in:
75
.gitea/workflows/create-pr.sh
Executable file
75
.gitea/workflows/create-pr.sh
Executable file
@@ -0,0 +1,75 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Shared script for creating pull requests in Gitea workflows
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Required environment variables:
|
||||||
|
# - CI_BOT_TOKEN: Gitea bot token for authentication
|
||||||
|
# - PR_BRANCH: Branch name for the pull request
|
||||||
|
# - PR_TITLE: Title of the pull request
|
||||||
|
# - PR_BODY: Body/description of the pull request
|
||||||
|
|
||||||
|
if [[ -z "${CI_BOT_TOKEN:-}" ]]; then
|
||||||
|
echo "Error: CI_BOT_TOKEN is not set" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "${PR_BRANCH:-}" ]]; then
|
||||||
|
echo "Error: PR_BRANCH is not set" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "${PR_TITLE:-}" ]]; then
|
||||||
|
echo "Error: PR_TITLE is not set" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "${PR_BODY:-}" ]]; then
|
||||||
|
echo "Error: PR_BODY is not set" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Push the branch
|
||||||
|
git push origin "+HEAD:${PR_BRANCH}"
|
||||||
|
|
||||||
|
# Create pull request
|
||||||
|
resp=$(nix run --inputs-from . nixpkgs#curl -- -X POST \
|
||||||
|
-H "Authorization: token $CI_BOT_TOKEN" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "{
|
||||||
|
\"head\": \"${PR_BRANCH}\",
|
||||||
|
\"base\": \"main\",
|
||||||
|
\"title\": \"${PR_TITLE}\",
|
||||||
|
\"body\": \"${PR_BODY}\"
|
||||||
|
}" \
|
||||||
|
"https://git.clan.lol/api/v1/repos/clan/clan-core/pulls")
|
||||||
|
|
||||||
|
pr_number=$(echo "$resp" | jq -r '.number')
|
||||||
|
|
||||||
|
if [[ "$pr_number" == "null" ]]; then
|
||||||
|
echo "Error creating pull request:" >&2
|
||||||
|
echo "$resp" | jq . >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Created pull request #$pr_number"
|
||||||
|
|
||||||
|
# Merge when checks succeed
|
||||||
|
while true; do
|
||||||
|
resp=$(nix run --inputs-from . nixpkgs#curl -- -X POST \
|
||||||
|
-H "Authorization: token $CI_BOT_TOKEN" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d '{
|
||||||
|
"Do": "merge",
|
||||||
|
"merge_when_checks_succeed": true,
|
||||||
|
"delete_branch_after_merge": true
|
||||||
|
}' \
|
||||||
|
"https://git.clan.lol/api/v1/repos/clan/clan-core/pulls/$pr_number/merge")
|
||||||
|
msg=$(echo "$resp" | jq -r '.message')
|
||||||
|
if [[ "$msg" != "Please try again later" ]]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
echo "Retrying in 2 seconds..."
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Pull request #$pr_number merge initiated"
|
||||||
@@ -19,35 +19,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
export GIT_AUTHOR_NAME=clan-bot GIT_AUTHOR_EMAIL=clan-bot@clan.lol GIT_COMMITTER_NAME=clan-bot GIT_COMMITTER_EMAIL=clan-bot@clan.lol
|
export GIT_AUTHOR_NAME=clan-bot GIT_AUTHOR_EMAIL=clan-bot@clan.lol GIT_COMMITTER_NAME=clan-bot GIT_COMMITTER_EMAIL=clan-bot@clan.lol
|
||||||
git commit -am "Update pinned clan-core for checks"
|
git commit -am "Update pinned clan-core for checks"
|
||||||
git push origin +HEAD:update-clan-core-for-checks
|
|
||||||
set -x
|
|
||||||
resp=$(nix run --inputs-from . nixpkgs#curl -- -X POST \
|
|
||||||
-H "Authorization: token $CI_BOT_TOKEN" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d '{
|
|
||||||
"head": "update-clan-core-for-checks",
|
|
||||||
"base": "main",
|
|
||||||
"title": "Update Clan Core for Checks",
|
|
||||||
"body": "This PR updates the pinned clan-core flake input that is used for checks."
|
|
||||||
}' \
|
|
||||||
"https://git.clan.lol/api/v1/repos/clan/clan-core/pulls")
|
|
||||||
pr_number=$(echo "$resp" | jq -r '.number')
|
|
||||||
|
|
||||||
# Merge when succeed
|
# Use shared PR creation script
|
||||||
while true; do
|
export PR_BRANCH="update-clan-core-for-checks"
|
||||||
resp=$(nix run --inputs-from . nixpkgs#curl -- -X POST \
|
export PR_TITLE="Update Clan Core for Checks"
|
||||||
-H "Authorization: token $CI_BOT_TOKEN" \
|
export PR_BODY="This PR updates the pinned clan-core flake input that is used for checks."
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d '{
|
./.gitea/workflows/create-pr.sh
|
||||||
"Do": "merge",
|
|
||||||
"merge_when_checks_succeed": true,
|
|
||||||
"delete_branch_after_merge": true
|
|
||||||
}' \
|
|
||||||
"https://git.clan.lol/api/v1/repos/clan/clan-core/pulls/$pr_number/merge")
|
|
||||||
msg=$(echo $resp | jq -r '.message')
|
|
||||||
if [[ "$msg" != "Please try again later" ]]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
echo "Retrying in 2 seconds..."
|
|
||||||
sleep 2
|
|
||||||
done
|
|
||||||
|
|||||||
40
.gitea/workflows/update-private-flake-inputs.yml
Normal file
40
.gitea/workflows/update-private-flake-inputs.yml
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
name: "Update private flake inputs"
|
||||||
|
on:
|
||||||
|
repository_dispatch:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 3 * * *" # Run daily at 3 AM
|
||||||
|
jobs:
|
||||||
|
update-private-flake:
|
||||||
|
runs-on: nix
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: Update private flake inputs
|
||||||
|
run: |
|
||||||
|
# Update the private flake lock file
|
||||||
|
cd devFlake/private
|
||||||
|
nix flake update
|
||||||
|
cd ../..
|
||||||
|
|
||||||
|
# Update the narHash
|
||||||
|
./devFlake/update-private-narhash
|
||||||
|
- name: Create pull request
|
||||||
|
env:
|
||||||
|
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
|
||||||
|
run: |
|
||||||
|
export GIT_AUTHOR_NAME=clan-bot GIT_AUTHOR_EMAIL=clan-bot@clan.lol GIT_COMMITTER_NAME=clan-bot GIT_COMMITTER_EMAIL=clan-bot@clan.lol
|
||||||
|
|
||||||
|
# Check if there are any changes
|
||||||
|
if ! git diff --quiet; then
|
||||||
|
git add devFlake/private/flake.lock devFlake/private.narHash
|
||||||
|
git commit -m "Update dev flake"
|
||||||
|
|
||||||
|
# Use shared PR creation script
|
||||||
|
export PR_BRANCH="update-dev-flake"
|
||||||
|
export PR_TITLE="Update dev flake"
|
||||||
|
export PR_BODY="This PR updates the dev flake inputs and corresponding narHash."
|
||||||
|
else
|
||||||
|
echo "No changes detected in dev flake inputs"
|
||||||
|
fi
|
||||||
1
devFlake/private.narHash
Normal file
1
devFlake/private.narHash
Normal file
@@ -0,0 +1 @@
|
|||||||
|
sha256-pFUj3KhQ4FkzZT19t+FHBru8u8Lspax0rS2cv7nXIgM=
|
||||||
165
devFlake/private/flake.lock
generated
Normal file
165
devFlake/private/flake.lock
generated
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"flake-utils": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": [
|
||||||
|
"systems"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1731533236,
|
||||||
|
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-utils_2": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1731533236,
|
||||||
|
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ixx": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": [
|
||||||
|
"nuschtos",
|
||||||
|
"flake-utils"
|
||||||
|
],
|
||||||
|
"nixpkgs": [
|
||||||
|
"nuschtos",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1748294338,
|
||||||
|
"narHash": "sha256-FVO01jdmUNArzBS7NmaktLdGA5qA3lUMJ4B7a05Iynw=",
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"repo": "ixx",
|
||||||
|
"rev": "cc5f390f7caf265461d4aab37e98d2292ebbdb85",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"ref": "v0.0.8",
|
||||||
|
"repo": "ixx",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs-dev": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1751867001,
|
||||||
|
"narHash": "sha256-3I49W0s3WVEDBO5S1RxYr74E2LLG7X8Wuvj9AmU0RDk=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "73feb5e20ec7259e280ca6f424ba165059b3bb6b",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable-small",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nuschtos": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils_2",
|
||||||
|
"ixx": "ixx",
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs-dev"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1749730855,
|
||||||
|
"narHash": "sha256-L3x2nSlFkXkM6tQPLJP3oCBMIsRifhIDPMQQdHO5xWo=",
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"repo": "search",
|
||||||
|
"rev": "8dfe5879dd009ff4742b668d9c699bc4b9761742",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NuschtOS",
|
||||||
|
"repo": "search",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
|
"nixpkgs-dev": "nixpkgs-dev",
|
||||||
|
"nuschtos": "nuschtos",
|
||||||
|
"systems": "systems_2",
|
||||||
|
"treefmt-nix": "treefmt-nix"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systems_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1681028828,
|
||||||
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-systems",
|
||||||
|
"repo": "default",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"treefmt-nix": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": []
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1750931469,
|
||||||
|
"narHash": "sha256-0IEdQB1nS+uViQw4k3VGUXntjkDp7aAlqcxdewb/hAc=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "treefmt-nix",
|
||||||
|
"rev": "ac8e6f32e11e9c7f153823abc3ab007f2a65d3e1",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "treefmt-nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
||||||
19
devFlake/private/flake.nix
Normal file
19
devFlake/private/flake.nix
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
description = "private dev inputs";
|
||||||
|
|
||||||
|
# Dev dependencies
|
||||||
|
inputs.nixpkgs-dev.url = "github:NixOS/nixpkgs/nixos-unstable-small";
|
||||||
|
|
||||||
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
inputs.flake-utils.inputs.systems.follows = "systems";
|
||||||
|
|
||||||
|
inputs.nuschtos.url = "github:NuschtOS/search";
|
||||||
|
inputs.nuschtos.inputs.nixpkgs.follows = "nixpkgs-dev";
|
||||||
|
|
||||||
|
inputs.treefmt-nix.url = "github:numtide/treefmt-nix";
|
||||||
|
inputs.treefmt-nix.inputs.nixpkgs.follows = "";
|
||||||
|
|
||||||
|
inputs.systems.url = "github:nix-systems/default";
|
||||||
|
|
||||||
|
outputs = _: { };
|
||||||
|
}
|
||||||
12
devFlake/update-private-narhash
Executable file
12
devFlake/update-private-narhash
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Used to update the private dev flake hash reference.
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
echo "Updating $PWD/private.narHash" >&2
|
||||||
|
|
||||||
|
nix --extra-experimental-features 'flakes nix-command' flake lock ./private
|
||||||
|
nix --extra-experimental-features 'flakes nix-command' hash path ./private >./private.narHash
|
||||||
|
|
||||||
|
echo OK
|
||||||
@@ -1,9 +1,15 @@
|
|||||||
{ self, config, ... }:
|
{
|
||||||
|
self,
|
||||||
|
config,
|
||||||
|
inputs,
|
||||||
|
privateInputs ? { },
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
perSystem =
|
perSystem =
|
||||||
{
|
{
|
||||||
inputs',
|
|
||||||
lib,
|
lib,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
@@ -157,11 +163,16 @@
|
|||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
packages.docs-options = inputs'.nuschtos.packages.mkMultiSearch {
|
packages = lib.optionalAttrs ((privateInputs ? nuschtos) || (inputs ? nuschtos)) {
|
||||||
|
docs-options =
|
||||||
|
(privateInputs.nuschtos or inputs.nuschtos)
|
||||||
|
.packages.${pkgs.stdenv.hostPlatform.system}.mkMultiSearch
|
||||||
|
{
|
||||||
inherit baseHref;
|
inherit baseHref;
|
||||||
title = "Clan Options";
|
title = "Clan Options";
|
||||||
# scopes = mapAttrsToList mkScope serviceModules;
|
# scopes = mapAttrsToList mkScope serviceModules;
|
||||||
scopes = [ (mkScope "Clan Inventory" serviceModules) ];
|
scopes = [ (mkScope "Clan Inventory" serviceModules) ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
72
flake.lock
generated
72
flake.lock
generated
@@ -67,52 +67,6 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flake-utils": {
|
|
||||||
"inputs": {
|
|
||||||
"systems": [
|
|
||||||
"systems"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1731533236,
|
|
||||||
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ixx": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-utils": [
|
|
||||||
"nuschtos",
|
|
||||||
"flake-utils"
|
|
||||||
],
|
|
||||||
"nixpkgs": [
|
|
||||||
"nuschtos",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1748294338,
|
|
||||||
"narHash": "sha256-FVO01jdmUNArzBS7NmaktLdGA5qA3lUMJ4B7a05Iynw=",
|
|
||||||
"owner": "NuschtOS",
|
|
||||||
"repo": "ixx",
|
|
||||||
"rev": "cc5f390f7caf265461d4aab37e98d2292ebbdb85",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NuschtOS",
|
|
||||||
"ref": "v0.0.8",
|
|
||||||
"repo": "ixx",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nix-darwin": {
|
"nix-darwin": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
@@ -174,41 +128,15 @@
|
|||||||
"url": "https://nixos.org/channels/nixpkgs-unstable/nixexprs.tar.xz"
|
"url": "https://nixos.org/channels/nixpkgs-unstable/nixexprs.tar.xz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nuschtos": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-utils": [
|
|
||||||
"flake-utils"
|
|
||||||
],
|
|
||||||
"ixx": "ixx",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1749730855,
|
|
||||||
"narHash": "sha256-L3x2nSlFkXkM6tQPLJP3oCBMIsRifhIDPMQQdHO5xWo=",
|
|
||||||
"owner": "NuschtOS",
|
|
||||||
"repo": "search",
|
|
||||||
"rev": "8dfe5879dd009ff4742b668d9c699bc4b9761742",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NuschtOS",
|
|
||||||
"repo": "search",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"data-mesher": "data-mesher",
|
"data-mesher": "data-mesher",
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
"flake-utils": "flake-utils",
|
|
||||||
"nix-darwin": "nix-darwin",
|
"nix-darwin": "nix-darwin",
|
||||||
"nix-select": "nix-select",
|
"nix-select": "nix-select",
|
||||||
"nixos-facter-modules": "nixos-facter-modules",
|
"nixos-facter-modules": "nixos-facter-modules",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nuschtos": "nuschtos",
|
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"systems": "systems",
|
"systems": "systems",
|
||||||
"treefmt-nix": "treefmt-nix"
|
"treefmt-nix": "treefmt-nix"
|
||||||
|
|||||||
27
flake.nix
27
flake.nix
@@ -35,19 +35,13 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# dependencies needed for nuschtos
|
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
|
||||||
flake-utils.inputs.systems.follows = "systems";
|
|
||||||
nuschtos.url = "github:NuschtOS/search";
|
|
||||||
nuschtos.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
nuschtos.inputs.flake-utils.follows = "flake-utils";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
inputs@{
|
inputs@{
|
||||||
flake-parts,
|
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
systems,
|
systems,
|
||||||
|
flake-parts,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
@@ -56,10 +50,29 @@
|
|||||||
optional
|
optional
|
||||||
pathExists
|
pathExists
|
||||||
;
|
;
|
||||||
|
|
||||||
|
loadDevFlake =
|
||||||
|
path:
|
||||||
|
let
|
||||||
|
flakeHash = nixpkgs.lib.fileContents "${toString path}.narHash";
|
||||||
|
flakePath = "path:${toString path}?narHash=${flakeHash}";
|
||||||
|
in
|
||||||
|
builtins.getFlake (builtins.unsafeDiscardStringContext flakePath);
|
||||||
|
|
||||||
|
devFlake =
|
||||||
|
if pathExists ./devFlake/private && builtins ? getFlake then
|
||||||
|
loadDevFlake ./devFlake/private
|
||||||
|
else
|
||||||
|
null;
|
||||||
|
|
||||||
|
privateInputs = if devFlake != null then devFlake.inputs else { };
|
||||||
in
|
in
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } (
|
flake-parts.lib.mkFlake { inherit inputs; } (
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
|
_module.args = {
|
||||||
|
inherit privateInputs;
|
||||||
|
};
|
||||||
clan = {
|
clan = {
|
||||||
meta.name = "clan-core";
|
meta.name = "clan-core";
|
||||||
inventory = {
|
inventory = {
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ lib.fix (
|
|||||||
inventory = clanLib.callLib ./modules/inventory { };
|
inventory = clanLib.callLib ./modules/inventory { };
|
||||||
modules = clanLib.callLib ./modules/inventory/frontmatter { };
|
modules = clanLib.callLib ./modules/inventory/frontmatter { };
|
||||||
test = clanLib.callLib ./test { };
|
test = clanLib.callLib ./test { };
|
||||||
|
flake-inputs = clanLib.callLib ./flake-inputs.nix { };
|
||||||
# Custom types
|
# Custom types
|
||||||
types = clanLib.callLib ./types { };
|
types = clanLib.callLib ./types { };
|
||||||
|
|
||||||
|
|||||||
16
lib/flake-inputs.nix
Normal file
16
lib/flake-inputs.nix
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
Generate nix-unit input overrides for tests
|
||||||
|
|
||||||
|
# Example
|
||||||
|
```nix
|
||||||
|
inputOverrides = clanLib.flake-inputs.getOverrides inputs;
|
||||||
|
```
|
||||||
|
*/
|
||||||
|
getOverrides =
|
||||||
|
inputs:
|
||||||
|
builtins.concatStringsSep " " (
|
||||||
|
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
{ self, inputs, ... }:
|
{ self, inputs, ... }:
|
||||||
let
|
let
|
||||||
inputOverrides = builtins.concatStringsSep " " (
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
||||||
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
|
||||||
);
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
perSystem =
|
perSystem =
|
||||||
|
|||||||
@@ -4,9 +4,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inputOverrides = builtins.concatStringsSep " " (
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
||||||
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
|
||||||
);
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
{ self, inputs, ... }:
|
{ self, inputs, ... }:
|
||||||
let
|
let
|
||||||
inputOverrides = builtins.concatStringsSep " " (
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
||||||
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
|
||||||
);
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
perSystem =
|
perSystem =
|
||||||
|
|||||||
@@ -5,9 +5,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inputOverrides = builtins.concatStringsSep " " (
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
||||||
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
|
||||||
);
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
|||||||
@@ -24,9 +24,7 @@
|
|||||||
testArgs ? { },
|
testArgs ? { },
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inputOverrides = builtins.concatStringsSep " " (
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
||||||
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
|
||||||
);
|
|
||||||
attrName = "eval-tests-${testName}";
|
attrName = "eval-tests-${testName}";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,9 +5,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inputOverrides = builtins.concatStringsSep " " (
|
inputOverrides = self.clanLib.flake-inputs.getOverrides inputs;
|
||||||
builtins.map (input: " --override-input ${input} ${inputs.${input}}") (builtins.attrNames inputs)
|
|
||||||
);
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
perSystem =
|
perSystem =
|
||||||
|
|||||||
Reference in New Issue
Block a user