mirror of
https://github.com/lune-org/docs.git
synced 2025-04-03 18:10:54 +01:00
docs: add Nix installation method
This commit is contained in:
parent
b6207f05d6
commit
94885e53e6
1 changed files with 51 additions and 0 deletions
|
@ -92,6 +92,57 @@ yay -S [PACKAGE_NAME]
|
|||
Only one of these AUR packages must be installed at a time in order to prevent conflicts.
|
||||
</Callout>
|
||||
|
||||
### Nix
|
||||
|
||||
macOS* and Linux users can use [Nix](https://nixos.org/) to install Lune.
|
||||
|
||||
<Callout type="warning" emoji="⚠️">
|
||||
macOS is currently broken. Help is wanted.
|
||||
</Callout>
|
||||
|
||||
#### Imperatively
|
||||
|
||||
##### On NixOS
|
||||
|
||||
```sh copy filename="Bash"
|
||||
nix-env -iA nixos.lune
|
||||
```
|
||||
|
||||
##### On Non NixOS without flakes
|
||||
|
||||
```sh copy filename="Bash"
|
||||
nix-env -iA nixpkgs.lune
|
||||
```
|
||||
|
||||
##### On Non NixOS with flakes
|
||||
|
||||
```sh copy filename="Bash"
|
||||
nix profile install nixpkgs#lune
|
||||
```
|
||||
#### Declaratively
|
||||
|
||||
##### With [home-manager](https://github.com/nix-community/home-manager)
|
||||
|
||||
```nix copy filename="nix"
|
||||
home.packages = with pkgs; [
|
||||
lune
|
||||
];
|
||||
```
|
||||
|
||||
##### system-wide NixOS configuration
|
||||
|
||||
```nix copy filename="nix"
|
||||
enviroment.systemPackages = with pkgs; [
|
||||
lune
|
||||
];
|
||||
```
|
||||
|
||||
##### Temporarily
|
||||
|
||||
```sh copy filename="Bash"
|
||||
nix-shell -p lune
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
|
|
Loading…
Add table
Reference in a new issue