aboutsummaryrefslogtreecommitdiff
path: root/nix/NIX.md
diff options
context:
space:
mode:
Diffstat (limited to 'nix/NIX.md')
-rw-r--r--nix/NIX.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/nix/NIX.md b/nix/NIX.md
new file mode 100644
index 00000000..1ceba9a3
--- /dev/null
+++ b/nix/NIX.md
@@ -0,0 +1,31 @@
+# How to import
+
+To import with flakes use
+```nix
+inputs = {
+ polymc.url = "github:PolyMC/PolyMC";
+};
+
+...
+
+nixpkgs.overlays = [ inputs.polymc.overlay ]; ## Within configuration.nix
+environment.systemPackages = with pkgs; [ polymc ]; ##
+```
+
+To import without flakes use channels:
+
+```
+nix-channel --add https://github.com/PolyMC/PolyMC/archive/master.tar.gz polymc
+nix-channel --update polymc
+nix-env -iA polymc
+```
+
+or alternatively you can use
+
+```
+nixpkgs.overlays = [
+ (import (builtins.fetchTarball "https://github.com/PolyMC/PolyMC/archive/develop.tar.gz")).overlay
+];
+
+environment.systemPackages = with pkgs; [ polymc ];
+```