nixos-configs/apps/update-sources/default.nix
matt1432 cd60197ad6 chore: update sources
Flake Inputs:
    • Updated input 'home-manager':
        'github:nix-community/home-manager' (2025-05-26) rev: d23d20f55d49d8818ac1f1b2783671e8a6725022
      → 'github:nix-community/home-manager' (2025-05-29) rev: 95c988cf08e9a5a8fe7cc275d5e3f24e9e87bd51

    • Updated input 'hyprland':
        'github:hyprwm/Hyprland' (2025-05-27) rev: 9b327ddfd1ad4cfef7a04a178e9f0aed16e95e0a
      → 'github:hyprwm/Hyprland' (2025-05-28) rev: 9bf1b491440eac6f9c0d6853013ad5666c12d1d9

    • Updated input 'hyprland-plugins':
        'github:hyprwm/hyprland-plugins' (2025-05-26) rev: d81d96e9d68c182a202e0bbf14384d60929b4454
      → 'github:hyprwm/hyprland-plugins' (2025-05-29) rev: 2eee96fe52fa0923c0aae647eb7901b5b51df3db

    • Updated input 'jovian':
        'github:Jovian-Experiments/Jovian-NixOS' (2025-05-27) rev: 9653efc90af7c78efe160cf34f8ed83959f8a338
      → 'github:Jovian-Experiments/Jovian-NixOS' (2025-05-28) rev: 9d69aed9023082af370b71bffdfcd414b6b61593

    • Updated input 'nix-gaming':
        'github:fufexan/nix-gaming' (2025-05-26) rev: aa4362cf3b4ec587bbe43132a7b8384934fb38af
      → 'github:fufexan/nix-gaming' (2025-05-28) rev: 39bae253dc201cfe03ee53bd90ed813f89afa9cd

    • Updated input 'nix-serve-ng':
        'github:aristanetworks/nix-serve-ng' (2025-05-21) rev: 7b7cf5cd0863620ba2b30f23e4c716a23b93b0b5
      → 'github:aristanetworks/nix-serve-ng' (2025-05-28) rev: 1d21f73a2d563ffbb924a4244c29b35e898caefe

    • Updated input 'nixcord':
        'github:kaylorben/nixcord' (2025-05-27) rev: 6a367227b00a2b9463391ca76be1649b3f52be5b
      → 'github:kaylorben/nixcord' (2025-05-28) rev: b3e71cd6aa3534017f46e3cd2dba700be688ddb4

    • Updated input 'nixpkgs':
        'git+https://github.com/NixOS/nixpkgs&shallow=1' (2025-05-25) rev: 62b852f6c6742134ade1abdd2a21685fd617a291
      → 'git+https://github.com/NixOS/nixpkgs&shallow=1' (2025-05-27) rev: 4faa5f5321320e49a78ae7848582f684d64783e9

    • Updated input 'pcsd':
        'github:matt1432/nixos-pcsd' (2025-04-30) rev: 66cac820594cc90a5f7da9f1a129c0a675ff2193
      → 'github:matt1432/nixos-pcsd' (2025-05-28) rev: c24eb7565508f80ac39c825d6ec6dc5d6d82577c

    • Updated input 'quickshell':
        'git+https://git.outfoxxed.me/quickshell/quickshell' (2025-05-27) rev: b898592db7a212a9e37841e9c8ed3072770d4546
      → 'git+https://git.outfoxxed.me/quickshell/quickshell' (2025-05-28) rev: 2e3c15f7a1e76da788c89ac1e252aaf4885bda5d

    • Updated input 'tuya-local-src':
        'github:make-all/tuya-local' (2025-05-27) rev: 43a60de2fef3ec884ca14553e8b3873397d04ce4
      → 'github:make-all/tuya-local' (2025-05-29) rev: 69ef1ef66d28834d972d1dca122bd563053ede66

Docker Images:
    • vegardit/gitea-act-runner dind-latest:
       sha256:7f462f66f0e360ad2dd023a35634711439f115d4a3c69d4ff68c8425d9e174d9
     → sha256:ea3a776cd3d173a86afdaeedb90ea10fae3595d59f29e0f96a63d51a60213ad8

    • rssbridge/rss-bridge latest:
       sha256:5dcd8d8d76dd8a68d4da97b16adaf09c1c90827181d2f032fecd59795d3c2962
     → sha256:b225b64c7f5d94f9210beb19f7fa35ca34120677560c4576174ed460aebe0d81

    • ghcr.io/immich-app/postgres 14-vectorchord0.3.0-pgvectors0.2.0:
       sha256:9d1c54201c5e122a2fd9df216d945bbb58dca62b7f0aab76107a38850851225f
     → sha256:125826edbd668fbd94d4ca649e9892a6a57304a56d79f7e13697ebfade5ea60c

Node modules:
    @types/node: 22.15.23 -> 22.15.24
2025-05-29 10:12:19 -04:00

36 lines
707 B
Nix

{
buildApp,
callPackage,
curl,
findutils,
go,
jq,
just,
nix-update,
nodejs_latest,
prefetch-npm-deps,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-G6DPaiZ6J5SuykXSH9fVvOn4csLFIud6IlelNL+u3k0=";
runtimeInputs = [
curl
findutils
go
jq
just
nix-update
nodejs_latest
prefetch-npm-deps
# We want to use the one from my config with authfile
# (callPackage ../../modules/docker/updateImage.nix {})
(callPackage ../../configurations/homie/modules/home-assistant/netdaemon/update.nix {})
];
meta.description = ''
Updates all derivation sources in this repository and
generates a commit message for the changes made.
'';
}