This commit is contained in:
2026-09-01 10:45:21 -04:00
commit ac32649783
51 changed files with 4837 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{ inputs, ... }:
{
imports = [
./wine
./affinity
./affinity-v3
./apl
./runner
];
perSystem =
{
pkgs,
wine-packages,
...
}:
{
# this function builds the prefix right up until the affinity sources
# are used. this separation exists for build caching, as the affinity sources
# should never be exposed to a cache
packages.base-prefix-pre-affinity = pkgs.callPackage ./basePrefix.nix {
inherit inputs wine-packages;
};
_module.args = {
};
};
}