aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorSamisafool <thenerdiestguy@gmail.com>2022-10-18 20:07:04 +0530
committerSamisafool <thenerdiestguy@gmail.com>2022-10-19 15:02:43 +0530
commit8201d1df0279693ab70a00e205a2612878b1d6b5 (patch)
treed10673a079c0815d14b2dd4c3500ebe9ea58f8fc /nix
parentddf168c5361f99f25b881d839c5eb30aff3d4ee9 (diff)
downloadPrismLauncher-8201d1df0279693ab70a00e205a2612878b1d6b5.tar.gz
PrismLauncher-8201d1df0279693ab70a00e205a2612878b1d6b5.tar.bz2
PrismLauncher-8201d1df0279693ab70a00e205a2612878b1d6b5.zip
Rename
Signed-off-by: Samisafool <thenerdiestguy@gmail.com>
Diffstat (limited to 'nix')
-rw-r--r--nix/NIX.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/nix/NIX.md b/nix/NIX.md
index 047dd82f..e57d5be7 100644
--- a/nix/NIX.md
+++ b/nix/NIX.md
@@ -5,22 +5,22 @@ To import with flakes use
```nix
{
inputs = {
- polymc.url = "github:PolyMC/PolyMC";
+ prismlauncher.url = "github:PrismLauncher/PrismLauncher";
};
...
- nixpkgs.overlays = [ inputs.polymc.overlay ]; ## Within configuration.nix
- environment.systemPackages = with pkgs; [ polymc ]; ##
+ nixpkgs.overlays = [ inputs.prismlauncher.overlay ]; ## Within configuration.nix
+ environment.systemPackages = with pkgs; [ prismlauncher ]; ##
}
```
To import without flakes use channels:
```sh
-nix-channel --add https://github.com/PolyMC/PolyMC/archive/master.tar.gz polymc
-nix-channel --update polymc
-nix-env -iA polymc
+nix-channel --add https://github.com/PrismLauncher/PrismLauncher/archive/master.tar.gz prismlauncher
+nix-channel --update prismlauncher
+nix-env -iA prismlauncher
```
or alternatively you can use
@@ -28,9 +28,9 @@ or alternatively you can use
```nix
{
nixpkgs.overlays = [
- (import (builtins.fetchTarball "https://github.com/PolyMC/PolyMC/archive/develop.tar.gz")).overlay
+ (import (builtins.fetchTarball "https://github.com/PrismLauncher/PrismLauncher/archive/develop.tar.gz")).overlay
];
- environment.systemPackages = with pkgs; [ polymc ];
+ environment.systemPackages = with pkgs; [ prismlauncher ];
}
```