update, added assets

This commit is contained in:
2026-03-29 02:39:10 +09:00
parent ad4a10ec09
commit b16a603ea1
21 changed files with 308 additions and 44 deletions

View File

@@ -1,4 +1,12 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, inputs, ... }:
{
nixpkgs.overlays = [];
nixpkgs.overlays = [
(final: _: {
unstable = import inputs.nixpkgs-unstable {
inherit (final.stdenv.hostPlatform) system;
inherit (final) config;
};
})
inputs.my-ricing-assets.overlays.x86_64-linux.default
];
}