Merge pull request #29 from cidkidnix/develop

This commit is contained in:
swirl
2022-01-09 10:58:51 -05:00
committed by GitHub
2 changed files with 32 additions and 0 deletions

31
packages/nix/NIX.md Normal file
View File

@ -0,0 +1,31 @@
# How to import
To import with flakes use
```nix
inputs = {
polymc.url = "github:PolyMC/PolyMC";
};
...
nixpkgs.overlays = [ inputs.polymc.overlay.${system} ]; ## 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 ];
```