Merge pull request #385 from winapps-org/fix-nix-patch

fix: always source inquirer from path on nix
This commit is contained in:
Oskar Manhart
2025-01-15 21:37:54 +01:00
committed by GitHub
6 changed files with 73 additions and 34 deletions

View File

@@ -523,7 +523,7 @@ nix profile install github:winapps-org/winapps#winapps-launcher # optional
};
outputs =
{
inputs@{
nixpkgs,
winapps,
...
@@ -552,8 +552,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
];
}
)