From 01b3880b411dc2fcee46839ebd4421ed1c3f9df7 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:06:58 +0200 Subject: [PATCH 01/15] test: add debug line to workflow --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ed4dbf..5572c53 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,8 @@ jobs: - uses: actions/checkout@v4 - name: Nix build run: nix build --extra-experimental-features "flakes nix-command" . + - name: Debug + run: echo $PWD - name: Setup skopeo run: curl -o /etc/containers/policy.json --create-dirs https://raw.githubusercontent.com/containers/skopeo/refs/heads/main/default-policy.json - name: Push Image From 93b71cbbc503db8fc6bd3f16322dbb28f7e5212d Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:08:37 +0200 Subject: [PATCH 02/15] feat: mark the minimal image as minimal and extend the defualt one --- README.md | 11 ++++++----- flake.nix | 33 ++++++++++++++++++++++++--------- 2 files changed, 30 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 4a280a5..c75392c 100644 --- a/README.md +++ b/README.md @@ -7,21 +7,22 @@ As you cannot run a forgejo runner with `nixos/nix` due to it not having `node` ```bash USERNAME="tamipes" URL="git.tami.moe" + IMG_NAME="nix" nix build --extra-experimental-features "flakes nix-command" . docker load -i result - docker image tag nix "$URL/$USERNAME/nix:latest" + docker image tag nix "$URL/$USERNAME/$IMG_NAME:latest" docker login "https://$URL" - docker push "$URL/$USERNAME/nix" + docker push "$URL/$USERNAME/$IMG_NAME" rm result # don't forget to cleanup the GC root # I also tag with the date, but this might be unneeded - docker image tag nix "$URL/$USERNAME/nix:latest$(date --iso-8601)" - docker push "$URL/$USERNAME/nix" + docker image tag nix "$URL/$USERNAME/$IMG_NAME:latest$(date --iso-8601)" + docker push "$URL/$USERNAME/$IMG_NAME" ``` # Extra info -- This image is essentially still "based" on `nixos/nix`, but it builds it with nodejs included. Checkout the flake.nix! +- These image are essentially still "based" on `nixos/nix`, but it builds it with nodejs(+extras) included. Checkout the flake.nix! - it does not use `nixos/nix` as a base image, but uses the same build script and adds extra stuff - [nixpkgs manual](https://nix.dev/manual/nix/2.24/installation/installing-docker#docker-image-with-the-latest-development-version-of-nix) - [nixos/nix build script](https://github.com/NixOS/nix/blob/master/docker.nix) diff --git a/flake.nix b/flake.nix index 7163269..9850f00 100644 --- a/flake.nix +++ b/flake.nix @@ -6,16 +6,31 @@ }; outputs = { nixpkgs, nix, self }: let pkgs = import nixpkgs { system = "x86_64-linux"; }; in { - packages.x86_64-linux.default = import (nix + "/docker.nix") { - inherit pkgs; - extraPkgs = [ pkgs.nodejs ]; + packages.x86_64-linux = rec { + default = nix; + minimal-nix = import (nix + "/docker.nix") { + inherit pkgs; + extraPkgs = [ pkgs.nodejs ]; - Labels = { - "org.opencontainers.image.title" = "Nix"; - "org.opencontainers.image.source" = "https://git.tami.moe/tamipes/"; - "org.opencontainers.image.vendor" = "Tamipes"; - "org.opencontainers.image.version" = pkgs.nix.version; - "org.opencontainers.image.description" = "Nix container image with nodejs"; + Labels = { + "org.opencontainers.image.title" = "Nix (minimal)"; + "org.opencontainers.image.source" = "https://git.tami.moe/tamipes/forgejo-actions"; + "org.opencontainers.image.vendor" = "Tamipes"; + "org.opencontainers.image.version" = pkgs.nix.version; + "org.opencontainers.image.description" = "Nix container image with nodejs"; + }; + }; + nix = import (nix + "/docker.nix") { + inherit pkgs; + extraPkgs = [ pkgs.nodejs pkgs.skopeo ]; + + Labels = { + "org.opencontainers.image.title" = "Nix"; + "org.opencontainers.image.source" = "https://git.tami.moe/tamipes/forgejo-actions"; + "org.opencontainers.image.vendor" = "Tamipes"; + "org.opencontainers.image.version" = pkgs.nix.version; + "org.opencontainers.image.description" = "Nix container image with more cli tools"; + }; }; }; }; From 93c533b13e7219efb086166ee1dafa06ebc683f8 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:15:40 +0200 Subject: [PATCH 03/15] fix: name clash `nix` --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 9850f00..f6e805d 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,8 @@ outputs = { nixpkgs, nix, self }: let pkgs = import nixpkgs { system = "x86_64-linux"; }; in { packages.x86_64-linux = rec { - default = nix; + default = nix-with-tools; + minimal-nix = import (nix + "/docker.nix") { inherit pkgs; extraPkgs = [ pkgs.nodejs ]; @@ -20,7 +21,7 @@ "org.opencontainers.image.description" = "Nix container image with nodejs"; }; }; - nix = import (nix + "/docker.nix") { + nix-with-tools = import (nix + "/docker.nix") { inherit pkgs; extraPkgs = [ pkgs.nodejs pkgs.skopeo ]; From f69de09f52c7d569f7b5fce7d8d08da78f95db3f Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:11:50 +0200 Subject: [PATCH 04/15] feat: run "build and push" on push to `main` --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ed4dbf..d78b1e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,9 @@ name: Build and Push docker image on: workflow_dispatch: workflow_call: + push: + branches: + - main jobs: buildAndPush: From 2fce25f4cdf51e9e679cac36e544203740b7d9d9 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:24:18 +0200 Subject: [PATCH 05/15] feat: when building on actions use the builtin `skopeo` --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d78b1e3..064f6cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: run: curl -o /etc/containers/policy.json --create-dirs https://raw.githubusercontent.com/containers/skopeo/refs/heads/main/default-policy.json - name: Push Image run: | - nix shell --extra-experimental-features "flakes nix-command" nixpkgs#skopeo -c sh -c \ - 'skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" docker-archive://$(realpath result) "docker://$IMG_URL:$(date --iso-8601)" && \ - skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" docker-archive://$(realpath result) "docker://$IMG_URL"' + alias skp='skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" "docker-archive://$(realpath result)"' + skp "docker://$IMG_URL:$(date --iso-8601)" && \ + skp "docker://$IMG_URL" env: USERNAME: tamipes UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} From 0594840ed385558310b0e3212e1a7120f3e1d183 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:28:14 +0200 Subject: [PATCH 06/15] fix: can't use `alias` in actions, it seems like... --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 064f6cf..e35ff4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,8 @@ jobs: run: curl -o /etc/containers/policy.json --create-dirs https://raw.githubusercontent.com/containers/skopeo/refs/heads/main/default-policy.json - name: Push Image run: | - alias skp='skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" "docker-archive://$(realpath result)"' - skp "docker://$IMG_URL:$(date --iso-8601)" && \ - skp "docker://$IMG_URL" + skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" "docker-archive://$(realpath result)" "docker://$IMG_URL:$(date --iso-8601)" && \ + skopeo copy --dest-password "$UPLOAD_TOKEN" --dest-username "$USERNAME" "docker-archive://$(realpath result)" "docker://$IMG_URL" env: USERNAME: tamipes UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} From 8a7a7cf2ecfade5f464d5a93d4ed78e9adf84473 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Fri, 29 May 2026 16:47:24 +0200 Subject: [PATCH 07/15] --- Manual update of flake.lock --- --- flake.lock | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/flake.lock b/flake.lock index 7478ea2..cfb7c71 100644 --- a/flake.lock +++ b/flake.lock @@ -24,11 +24,11 @@ ] }, "locked": { - "lastModified": 1733312601, - "narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=", + "lastModified": 1778716662, + "narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9", + "rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb", "type": "github" }, "original": { @@ -48,18 +48,14 @@ "nixpkgs": [ "nix", "nixpkgs" - ], - "nixpkgs-stable": [ - "nix", - "nixpkgs" ] }, "locked": { - "lastModified": 1734279981, - "narHash": "sha256-NdaCraHPp8iYMWzdXAt5Nv6sA3MUzlCiGiR586TCwo0=", + "lastModified": 1778507602, + "narHash": "sha256-kTwur1wV+01SdqskVMSo6JMEpg71ps3HpbFY2GsflKs=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "aa9f40c906904ebd83da78e7f328cd8aeaeae785", + "rev": "61ab0e80d9c7ab14c256b5b453d8b3fb0189ba0a", "type": "github" }, "original": { @@ -78,11 +74,11 @@ "nixpkgs-regression": "nixpkgs-regression" }, "locked": { - "lastModified": 1768165334, - "narHash": "sha256-42bXWekwea6E+q00HVskzi7ggMQSr8g/7ApQaNd+mr0=", + "lastModified": 1780022537, + "narHash": "sha256-yhmkWBrvoIi0pSDmyBQZVNd4d1UZvWlgrXbUg8qZlnc=", "owner": "nixos", "repo": "nix", - "rev": "252aff5c8f1dcdea1046b03a8196ef63ecf3b112", + "rev": "9b03e7daa40b3d4d0a40a17d43bcc6c6d2b112ef", "type": "github" }, "original": { @@ -93,15 +89,15 @@ }, "nixpkgs": { "locked": { - "lastModified": 1763948260, - "narHash": "sha256-zZk7fn2ARAqmLwaYTpxBJmj81KIdz11NiWt7ydHHD/M=", - "rev": "1c8ba8d3f7634acac4a2094eef7c32ad9106532c", + "lastModified": 1778003029, + "narHash": "sha256-amc4Y3GF3+anUi7IJeLVzf7hVqLb3ZqCGzYtkVyp7Qw=", + "rev": "0c88e1f2bdb93d5999019e99cb0e61e1fe2af4c5", "type": "tarball", - "url": "https://releases.nixos.org/nixos/25.05/nixos-25.05.813095.1c8ba8d3f763/nixexprs.tar.xz" + "url": "https://releases.nixos.org/nixos/25.11/nixos-25.11.10470.0c88e1f2bdb9/nixexprs.tar.xz" }, "original": { "type": "tarball", - "url": "https://channels.nixos.org/nixos-25.05/nixexprs.tar.xz" + "url": "https://channels.nixos.org/nixos-25.11/nixexprs.tar.xz" } }, "nixpkgs-23-11": { @@ -138,11 +134,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1768127708, - "narHash": "sha256-1Sm77VfZh3mU0F5OqKABNLWxOuDeHIlcFjsXeeiPazs=", + "lastModified": 1779560665, + "narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=", "owner": "nixos", "repo": "nixpkgs", - "rev": "ffbc9f8cbaacfb331b6017d5a5abb21a492c9a38", + "rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786", "type": "github" }, "original": { From 0b4c3b11a1c34ec477449b77766187399752446d Mon Sep 17 00:00:00 2001 From: tamipes Date: Wed, 3 Jun 2026 19:04:58 +0200 Subject: [PATCH 08/15] fix: README.md use $IMG_NAME more --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c75392c..a3c180c 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ As you cannot run a forgejo runner with `nixos/nix` due to it not having `node` IMG_NAME="nix" nix build --extra-experimental-features "flakes nix-command" . docker load -i result - docker image tag nix "$URL/$USERNAME/$IMG_NAME:latest" + docker image tag "$IMG_NAME" "$URL/$USERNAME/$IMG_NAME:latest" docker login "https://$URL" docker push "$URL/$USERNAME/$IMG_NAME" rm result # don't forget to cleanup the GC root # I also tag with the date, but this might be unneeded - docker image tag nix "$URL/$USERNAME/$IMG_NAME:latest$(date --iso-8601)" + docker image tag "$IMG_NAME" "$URL/$USERNAME/$IMG_NAME:latest$(date --iso-8601)" docker push "$URL/$USERNAME/$IMG_NAME" ``` From c5f67c568ccee89f3e6f6d3a601a8d4e9f3c75bd Mon Sep 17 00:00:00 2001 From: Tamipes Date: Thu, 4 Jun 2026 21:48:32 +0200 Subject: [PATCH 09/15] feat: add my `nix-cache` to the full container --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index f6e805d..0b32008 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,13 @@ nix-with-tools = import (nix + "/docker.nix") { inherit pkgs; extraPkgs = [ pkgs.nodejs pkgs.skopeo ]; + nixConf = { + extra-substituters = [ "https://nix-cache.tami.moe" ]; + trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + "nix-cache.tami.moe:3jrWZ412K0YTFfKMJC6ftc4lsugeMVWDBiudFCAdDb8=" + ]; + }; Labels = { "org.opencontainers.image.title" = "Nix"; From d9f918f37f5ae8ed31da920d249227f154535e54 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Sat, 11 Jul 2026 21:59:24 +0200 Subject: [PATCH 10/15] feat: support `https://niks3-cache.tami.moe` and add `niks3` binary --- flake.lock | 43 +++++++++++++++++++++++++++++++++++++++++++ flake.nix | 23 ++++++++++++++++++----- 2 files changed, 61 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index cfb7c71..36096f7 100644 --- a/flake.lock +++ b/flake.lock @@ -64,6 +64,27 @@ "type": "github" } }, + "niks3": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ], + "treefmt-nix": "treefmt-nix" + }, + "locked": { + "lastModified": 1783583669, + "narHash": "sha256-fiAFsNCgzMmaeoEFQiibMIYO3MyUqvKlwNT3F+N94MI=", + "owner": "Mic92", + "repo": "niks3", + "rev": "fbcded5420a3f2357fda14b6cf0f0453d1ed3266", + "type": "github" + }, + "original": { + "owner": "Mic92", + "repo": "niks3", + "type": "github" + } + }, "nix": { "inputs": { "flake-compat": "flake-compat", @@ -150,9 +171,31 @@ }, "root": { "inputs": { + "niks3": "niks3", "nix": "nix", "nixpkgs": "nixpkgs_2" } + }, + "treefmt-nix": { + "inputs": { + "nixpkgs": [ + "niks3", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1780220602, + "narHash": "sha256-eynAfOmbmxJnkp7YewvCEbShNnnYJ9gLLqkzsYtBPeM=", + "owner": "numtide", + "repo": "treefmt-nix", + "rev": "db947814a175b7ca6ded66e21383d938df01c227", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "treefmt-nix", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 0b32008..676d72d 100644 --- a/flake.nix +++ b/flake.nix @@ -3,10 +3,18 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nix.url = "github:nixos/nix"; + niks3 = { + url = "github:Mic92/niks3"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { nixpkgs, nix, self }: - let pkgs = import nixpkgs { system = "x86_64-linux"; }; in { - packages.x86_64-linux = rec { + outputs = { nixpkgs, nix, self, ... }@inputs: + let + system = "x86_64-linux"; + pkgs = import nixpkgs { inherit system; }; + in + { + packages.${system} = rec { default = nix-with-tools; minimal-nix = import (nix + "/docker.nix") { @@ -23,12 +31,17 @@ }; nix-with-tools = import (nix + "/docker.nix") { inherit pkgs; - extraPkgs = [ pkgs.nodejs pkgs.skopeo ]; + extraPkgs = [ + pkgs.nodejs + pkgs.skopeo + inputs.niks3.packages.${system}.default + ]; nixConf = { - extra-substituters = [ "https://nix-cache.tami.moe" ]; + extra-substituters = [ "https://nix-cache.tami.moe" "https://niks3-cache.tami.moe" ]; trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "nix-cache.tami.moe:3jrWZ412K0YTFfKMJC6ftc4lsugeMVWDBiudFCAdDb8=" + "niks3-garage:l7ZLnM6i0mqqHbMEpHg+UAeqG53u8m/Mhep487dOOOE=" ]; }; From c009ed805938290b6dbceae475970347b6180933 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Sun, 12 Jul 2026 01:23:04 +0200 Subject: [PATCH 11/15] feat: add niks3 upload action --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e35ff4c..8214b35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,3 +23,7 @@ jobs: USERNAME: tamipes UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} IMG_URL: git.tami.moe/tamipes/nix + - name: niks3 upload + uses: https://git.tami.moe/actions/niks3-upload@main + with: + token: ${{ secrets.NIKS3_TOKEN }} From 7422c2de6201e2cbf9733c899b5e12d84cea84d2 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Sun, 12 Jul 2026 01:51:55 +0200 Subject: [PATCH 12/15] fix: update niks3 upload action manifest things --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8214b35..5f2936d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: USERNAME: tamipes UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} IMG_URL: git.tami.moe/tamipes/nix - - name: niks3 upload - uses: https://git.tami.moe/actions/niks3-upload@main + - uses: https://git.tami.moe/actions/niks3-upload@main with: token: ${{ secrets.NIKS3_TOKEN }} + pin: nix-container From b8a6b11d42739c249341ec736a416623d8e769c1 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Sun, 12 Jul 2026 02:34:19 +0200 Subject: [PATCH 13/15] chore: name `niks3 pin` instead of it being the action url --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f2936d..0d7537b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,8 @@ jobs: USERNAME: tamipes UPLOAD_TOKEN: ${{ secrets.UPLOAD_TOKEN }} IMG_URL: git.tami.moe/tamipes/nix - - uses: https://git.tami.moe/actions/niks3-upload@main + - name: niks3 pin + uses: https://git.tami.moe/actions/niks3-upload@main with: token: ${{ secrets.NIKS3_TOKEN }} pin: nix-container From 69bedff308ce59f26b850cd481cb854678d69041 Mon Sep 17 00:00:00 2001 From: Tamipes Date: Mon, 13 Jul 2026 16:22:47 +0200 Subject: [PATCH 14/15] feat: add busybox --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 676d72d..8a71c81 100644 --- a/flake.nix +++ b/flake.nix @@ -19,7 +19,7 @@ minimal-nix = import (nix + "/docker.nix") { inherit pkgs; - extraPkgs = [ pkgs.nodejs ]; + extraPkgs = [ pkgs.nodejs pkgs.busybox ]; Labels = { "org.opencontainers.image.title" = "Nix (minimal)"; @@ -33,6 +33,7 @@ inherit pkgs; extraPkgs = [ pkgs.nodejs + pkgs.busybox pkgs.skopeo inputs.niks3.packages.${system}.default ]; From a6c6db37b1c0354396708075599df7f732835f4b Mon Sep 17 00:00:00 2001 From: Tamipes Date: Mon, 20 Jul 2026 15:27:14 +0200 Subject: [PATCH 15/15] --- Manual update of flake.lock --- --- flake.lock | 43 ++++++++++++++++++++----------------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/flake.lock b/flake.lock index 36096f7..868c9a9 100644 --- a/flake.lock +++ b/flake.lock @@ -24,11 +24,11 @@ ] }, "locked": { - "lastModified": 1778716662, - "narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=", + "lastModified": 1782949081, + "narHash": "sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w+6NWK9yA=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb", + "rev": "17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e", "type": "github" }, "original": { @@ -42,20 +42,17 @@ "flake-compat": [ "nix" ], - "gitignore": [ - "nix" - ], "nixpkgs": [ "nix", "nixpkgs" ] }, "locked": { - "lastModified": 1778507602, - "narHash": "sha256-kTwur1wV+01SdqskVMSo6JMEpg71ps3HpbFY2GsflKs=", + "lastModified": 1783008725, + "narHash": "sha256-jGiy6+sxjNWXSjp25uoJuNfyH9zBK1PEDY0lVoL4ibQ=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "61ab0e80d9c7ab14c256b5b453d8b3fb0189ba0a", + "rev": "bca82caa46d5ec0f5d422c61fb1e30bc51313cbe", "type": "github" }, "original": { @@ -72,11 +69,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1783583669, - "narHash": "sha256-fiAFsNCgzMmaeoEFQiibMIYO3MyUqvKlwNT3F+N94MI=", + "lastModified": 1784469529, + "narHash": "sha256-paLbmEm96K2rGVzUxhW/Z705BRF9TzZHU2U+9UnKbAg=", "owner": "Mic92", "repo": "niks3", - "rev": "fbcded5420a3f2357fda14b6cf0f0453d1ed3266", + "rev": "6e6d6251d94d08bd98410fc190daba80dba02f5b", "type": "github" }, "original": { @@ -95,11 +92,11 @@ "nixpkgs-regression": "nixpkgs-regression" }, "locked": { - "lastModified": 1780022537, - "narHash": "sha256-yhmkWBrvoIi0pSDmyBQZVNd4d1UZvWlgrXbUg8qZlnc=", + "lastModified": 1784375420, + "narHash": "sha256-dt1zVj4MRpmffhsgQk+3tx1m/pFTXbtVWrn5KZ1y+8Q=", "owner": "nixos", "repo": "nix", - "rev": "9b03e7daa40b3d4d0a40a17d43bcc6c6d2b112ef", + "rev": "bebd2f851a304e9fb2e143ce0cbeff577c6a37ac", "type": "github" }, "original": { @@ -110,15 +107,15 @@ }, "nixpkgs": { "locked": { - "lastModified": 1778003029, - "narHash": "sha256-amc4Y3GF3+anUi7IJeLVzf7hVqLb3ZqCGzYtkVyp7Qw=", - "rev": "0c88e1f2bdb93d5999019e99cb0e61e1fe2af4c5", + "lastModified": 1783148766, + "narHash": "sha256-H9+N+GFtsbVC8ZniHliChM7ndizxtqVZs6bnGOLM3WQ=", + "rev": "a50de1b7d8a586adc18d2395c19de7d6058e6030", "type": "tarball", - "url": "https://releases.nixos.org/nixos/25.11/nixos-25.11.10470.0c88e1f2bdb9/nixexprs.tar.xz" + "url": "https://releases.nixos.org/nixos/26.05/nixos-26.05.4193.a50de1b7d8a5/nixexprs.tar.xz" }, "original": { "type": "tarball", - "url": "https://channels.nixos.org/nixos-25.11/nixexprs.tar.xz" + "url": "https://channels.nixos.org/nixos-26.05/nixexprs.tar.xz" } }, "nixpkgs-23-11": { @@ -155,11 +152,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1779560665, - "narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=", + "lastModified": 1784497964, + "narHash": "sha256-vlHUuqAcbcH2RKmHbPiuQzbv1pnzzavXnI62RD0bqCU=", "owner": "nixos", "repo": "nixpkgs", - "rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786", + "rev": "241313f4e8e508cb9b13278c2b0fa25b9ca27163", "type": "github" }, "original": {