matt1432
dcd4e56e7a
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'astal': 'github:Aylur/astal' (2025-02-01) rev: 09c9df0ed498dbea214d38af74b90c9a8b023489 → 'github:Aylur/astal' (2025-02-01) rev: 32348e7c5b2246c6ddc82499cfb08244313ead44 • Updated input 'custom-sidebar-src': 'github:elchininet/custom-sidebar' (2025-01-31) rev: f399f398917e0149eb4b44460f1cd6341cdd23e0 → 'github:elchininet/custom-sidebar' (2025-02-02) rev: 7cd829748f23dbf87c9c193fde5964894b1fc0a5 • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-02-01) rev: dae6d3460c8bab3ac9f38a86affe45b32818e764 → 'github:nix-community/home-manager' (2025-02-01) rev: 18fa9f323d8adbb0b7b8b98a8488db308210ed93 • Updated input 'hyprgrass': 'github:horriblename/hyprgrass' (2025-02-01) rev: f7017c493e071c02f203c09a63ef7260dede0586 → 'github:horriblename/hyprgrass' (2025-02-02) rev: 499fd954a95aa2a1fee6cc31c098f6daa5ead3af • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-02-01) rev: 64fefa3749868e6170b6275963c6528456a7d9f2 → 'github:hyprwm/Hyprland' (2025-02-02) rev: 97a24ec6f3abd2b2ce4c2e00627679a2713848dd • Updated input 'hyprland-plugins': 'github:hyprwm/hyprland-plugins' (2025-01-29) rev: ae38ea6ee4938c74012c12072358c17e41254bed → 'github:hyprwm/hyprland-plugins' (2025-02-02) rev: eefa87d099bac625234b9e89ed67624efea0d27a • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS' (2025-01-31) rev: ad8f92168ff7aa442d9ca860879127251e348b2b → 'github:Jovian-Experiments/Jovian-NixOS' (2025-02-02) rev: 77fb0818cb42ca0db98839d47bbc6a317c286282 • Updated input 'nix-gaming': 'github:fufexan/nix-gaming' (2025-02-01) rev: cbe40678ac1b1cd345b169b6b8edbceeb43462b0 → 'github:fufexan/nix-gaming' (2025-02-02) rev: 5542800ed394225b5560a25e7fb92455bdcf5b85 • Updated input 'nix-index-db': 'github:Mic92/nix-index-database' (2025-01-26) rev: 79b7b8eae3243fc5aa9aad34ba6b9bbb2266f523 → 'github:Mic92/nix-index-database' (2025-02-02) rev: 46a8f5fc9552b776bfc5c5c96ea3bede33f68f52 • Updated input 'nixpkgs': 'github:NixOS/nixpkgs' (2025-01-29) rev: 9d3ae807ebd2981d593cddd0080856873139aa40 → 'github:NixOS/nixpkgs' (2025-02-01) rev: 3a228057f5b619feb3186e986dbe76278d707b6e • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland' (2025-02-01) rev: 07797d04938e9528ee5ca71e8e32197f1f724378 → 'github:nix-community/nixpkgs-wayland' (2025-02-02) rev: 299d6c9a9866c7666eaafd78ec4520a1dfd4fd7d • Updated input 'spotifyplus-src': 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-01-28) rev: a00c5b3bc7d719a0a8ecf85e29fa1d3b2f9ea2e4 → 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-02-01) rev: 71a4c41d0816f39d24126fe8d7284e2a612d3f71 • Updated input 'tuya-local-src': 'github:make-all/tuya-local' (2025-02-01) rev: d98aea8a3299d23cfc0cdffad59cde7e6bbc2914 → 'github:make-all/tuya-local' (2025-02-02) rev: c9709c4d7616ceeff399d46c5ad98c6c7acfbcad
28 lines
508 B
Nix
28 lines
508 B
Nix
{
|
|
buildApp,
|
|
callPackage,
|
|
findutils,
|
|
go,
|
|
nix-update,
|
|
nodejs_latest,
|
|
prefetch-npm-deps,
|
|
...
|
|
}:
|
|
buildApp {
|
|
src = ./.;
|
|
npmDepsHash = "sha256-lSdo0wTSgGOa2+TXmfm8mSXGwj3P0z/+UZIHiSs6gSQ=";
|
|
|
|
runtimeInputs = [
|
|
findutils
|
|
go
|
|
nix-update
|
|
nodejs_latest
|
|
prefetch-npm-deps
|
|
(callPackage ../../modules/docker/updateImage.nix {})
|
|
];
|
|
|
|
meta.description = ''
|
|
Updates all derivation sources in this repository and
|
|
generates a commit message for the changes made.
|
|
'';
|
|
}
|