overlay: Add non-cuda pkgs in pkgs.pkgsNoCuda

This commit is contained in:
ulic-youthlic 2025-06-13 15:10:00 +08:00
parent 1add1c0393
commit 8615b2aed9
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 7 additions and 0 deletions

View file

@ -8,6 +8,8 @@ in
./radicle-ci-broker.nix
./wallpapers.nix
./waydroid-script.nix
./pkgsNoCuda.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,5 @@
{inputs, ...}: _final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
pkgsNoCuda = inputs.nixpkgs.legacyPackages.${system};
}