flake: Sync flake input upstreams

This commit is contained in:
ulic-youthlic 2025-07-06 08:58:26 +08:00
parent f5977b7dcc
commit ed31c2cf5e
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
4 changed files with 400 additions and 116 deletions

View file

@ -11,7 +11,10 @@ in
# ./QQ.nix
./helix.nix
./cliphist.nix
# Nur
./nur.nix
./nur-ataraxiasejel.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,17 @@
{inputs, ...}: final: prev: let
inherit (final.stdenv.hostPlatform) system;
in {
nur =
prev.nur
// {
repos =
prev.nur.repos
// {
ataraxiasjel =
prev.nur.repos.ataraxiasjel
// {
inherit (inputs.nur-ataraxiasjel.packages.${system}) waydroid-script;
};
};
};
}