fix: actually build packages so they're inside the cachix cache

This commit is contained in:
Oskar Manhart
2025-01-14 17:51:22 +01:00
parent 80ba2ad378
commit 405e61d122
2 changed files with 4 additions and 4 deletions

View File

@@ -517,7 +517,7 @@ nix profile install github:winapps-org/winapps#winapps-launcher # optional
};
outputs =
{
inputs@{
nixpkgs,
winapps,
...
@@ -546,8 +546,8 @@ nix profile install github:winapps-org/winapps#winapps-launcher # optional
};
environment.systemPackages = [
winapps.packages.${system}.winapps
winapps.packages.${system}.winapps-launcher # optional
winapps.packages."${system}".winapps
winapps.packages."${system}".winapps-launcher # optional
];
}
)