Skip to content

Commit

Permalink
Changed urls NIX.md to this fork
Browse files Browse the repository at this point in the history
If one follows the directions as they were, it would install vanilla prismlauncher, not the cracked fork. This fixes that.

Signed-off-by: KateYagi <[email protected]>
  • Loading branch information
KateYagi authored Aug 13, 2023
1 parent 01144ae commit 1225254
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nix/NIX.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ the rest of your packages
# In your flake.nix:
{
inputs = {
prismlauncher.url = "github:PrismLauncher/PrismLauncher";
prismlauncher.url = "github:Diegiwg/PrismLauncher-Cracked";
};
}
```
Expand All @@ -36,7 +36,7 @@ latest version
# In your flake.nix:
{
inputs = {
prismlauncher.url = "github:PrismLauncher/PrismLauncher";
prismlauncher.url = "github:Diegiwg/PrismLauncher-Cracked";
};
}
```
Expand All @@ -56,7 +56,7 @@ home.packages = [ pkgs.prismlauncher ];
#### Using channels

```sh
nix-channel --add https://github.com/PrismLauncher/PrismLauncher/archive/master.tar.gz prismlauncher
nix-channel --add https://github.com/Diegiwg/PrismLauncher-Cracked/archive/master.tar.gz prismlauncher
nix-channel --update prismlauncher
nix-env -iA prismlauncher
```
Expand All @@ -67,7 +67,7 @@ nix-env -iA prismlauncher
# In your configuration.nix:
{
nixpkgs.overlays = [
(import (builtins.fetchTarball "https://github.com/PrismLauncher/PrismLauncher/archive/develop.tar.gz")).overlay
(import (builtins.fetchTarball "https://github.com/Diegiwg/PrismLauncher-Cracked/archive/develop.tar.gz")).overlay
];
environment.systemPackages = with pkgs; [ prismlauncher ];
Expand All @@ -79,5 +79,5 @@ nix-env -iA prismlauncher
If you're on a flakes-enabled nix you can run the launcher in one-line

```sh
nix run github:PrismLauncher/PrismLauncher
nix run github:Diegiwg/PrismLauncher-Cracked
```

0 comments on commit 1225254

Please sign in to comment.