Package wallpapers and sync flake inputs and package upstream source

This commit is contained in:
ulic-youthlic 2025-07-03 20:10:07 +08:00
parent bebfd63f40
commit 250c5f2cec
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
9 changed files with 131 additions and 58 deletions

View file

@ -6,6 +6,7 @@ in
./OuterWildsTextAdventure.nix
./editor-runtime.nix
./radicle-ci-broker.nix
./wallpapers.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,5 @@
{outputs, ...}: _final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
inherit (outputs.packages.${system}) wallpapers;
}