chore(deps): update https://git.salame.cl/jalil/nix-flake-outputs-size digest to 6d717f4 #38

Merged
renovate merged 1 commit from renovate/https-git.salame.cl-jalil-nix-flake-outputs-size-digest into main 2025-12-29 10:40:49 +01:00
Collaborator

This PR contains the following updates:

Package Type Update Change
https://git.salame.cl/jalil/nix-flake-outputs-size action digest 14c9b96 -> 6d717f4

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - Between 11:00 PM and 11:59 PM ( * 23 * * * ) (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | https://git.salame.cl/jalil/nix-flake-outputs-size | action | digest | `14c9b96` -> `6d717f4` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - Between 11:00 PM and 11:59 PM ( * 23 * * * ) (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNjkuMyIsInVwZGF0ZWRJblZlciI6IjQxLjE2OS4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
chore(deps): update https://git.salame.cl/jalil/nix-flake-outputs-size digest to 4c3268f
Some checks failed
/ checks (x86_64-linux, treefmt) (pull_request) Successful in 17s
/ build (pull_request) Successful in 15s
/ report-size (pull_request) Failing after 2s
b5f515cdf6
renovate scheduled this pull request to auto merge when all checks succeed 2025-12-26 14:50:07 +01:00
renovate changed title from chore(deps): update https://git.salame.cl/jalil/nix-flake-outputs-size digest to 4c3268f to chore(deps): update https://git.salame.cl/jalil/nix-flake-outputs-size digest to d54bf67 2025-12-26 15:20:07 +01:00
renovate force-pushed renovate/https-git.salame.cl-jalil-nix-flake-outputs-size-digest from b5f515cdf6
Some checks failed
/ checks (x86_64-linux, treefmt) (pull_request) Successful in 17s
/ build (pull_request) Successful in 15s
/ report-size (pull_request) Failing after 2s
to 1b84a42ece
Some checks failed
/ checks (x86_64-linux, treefmt) (pull_request) Successful in 3s
/ build (pull_request) Successful in 2s
/ report-size (pull_request) Failing after 1s
2025-12-26 15:20:08 +01:00
Compare
renovate changed title from chore(deps): update https://git.salame.cl/jalil/nix-flake-outputs-size digest to d54bf67 to chore(deps): update https://git.salame.cl/jalil/nix-flake-outputs-size digest to 6d717f4 2025-12-29 10:40:06 +01:00
renovate force-pushed renovate/https-git.salame.cl-jalil-nix-flake-outputs-size-digest from 1b84a42ece
Some checks failed
/ checks (x86_64-linux, treefmt) (pull_request) Successful in 3s
/ build (pull_request) Successful in 2s
/ report-size (pull_request) Failing after 1s
to 8e8674c22b
All checks were successful
/ checks (x86_64-linux, treefmt) (pull_request) Successful in 20s
/ build (pull_request) Successful in 3s
/ report-size (pull_request) Successful in 7s
/ checks (x86_64-linux, treefmt) (push) Successful in 2s
/ build (push) Successful in 2s
/ report-size (push) Successful in 1s
2025-12-29 10:40:06 +01:00
Compare

Flake output sizes

Definitions
  • Name: the name of the package/configuration.
  • Size: the closure size (size on disk/NAR size + all transitive dependencies).
  • NAR Size: the size of the build output (package without the dependencies).
  • [NAR] Size Change: the amount changed compared to the main branch.
Tips on reading this data
  • For NixOS/Home-Manager configurations you generally care only about the Size (closure size/size on disk).
    • Reduce the Size by disabling unneeded services/default packages.
  • For Packages you care about both the Size and the NAR Size.
    • Reduce the NAR Size by reducing the size of the build outputs, e.g. don't copy unnecessary data to the $out dir, optimize binaries for size, etc.
    • Reduce the Size by reducing the dependencies (e.g. buildInputs).
    • Don't worry too much about size, some dependencies are deduplicated, e.g. glibc adds ~40MiB to the Size, but is generally shared by ~every binary on the system, so, chances are, you are already including it from somewhere else and statically linking with e.g. musl is not gonna improve things.

Packages

Name Size Size Change NAR Size NAR Size Change
default 2.3MiB 2.3MiB 2.3MiB 2.3MiB
site 2.3MiB 0B 2.3MiB 0B
<!-- AUTOGENERATED by nix-flake-outputs-size action --> ## Flake output sizes <details><summary><b>Definitions</b></summary> - `Name`: the name of the package/configuration. - `Size`: the closure size (size on disk/NAR size + all transitive dependencies). - `NAR Size`: the size of the build output (package without the dependencies). - `[NAR] Size Change`: the amount changed compared to the main branch. </details> <details><summary><b>Tips on reading this data</b></summary> - For NixOS/Home-Manager configurations you generally care only about the `Size` (closure size/size on disk). - Reduce the `Size` by disabling unneeded services/default packages. - For Packages you care about both the `Size` and the `NAR Size`. - Reduce the `NAR Size` by reducing the size of the build outputs, e.g. don't copy unnecessary data to the $out dir, optimize binaries for size, etc. - Reduce the `Size` by reducing the dependencies (e.g. `buildInputs`). - Don't worry too much about size, some dependencies are deduplicated, e.g. `glibc` adds ~40MiB to the `Size`, but is generally shared by ~every binary on the system, so, chances are, you are already including it from somewhere else and statically linking with e.g. `musl` is not gonna improve things. </details> ## Packages | Name | Size | Size Change | NAR Size | NAR Size Change | |------|-----:|------------:|---------:|----------------:| | `default` | 2.3MiB | 2.3MiB | 2.3MiB | 2.3MiB | | `site` | 2.3MiB | 0B | 2.3MiB | 0B |
renovate deleted branch renovate/https-git.salame.cl-jalil-nix-flake-outputs-size-digest 2025-12-29 10:40:49 +01:00
Sign in to join this conversation.
No reviewers
No labels
bug
chore
enhancement
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
jalil/blog!38
No description provided.