mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Merge pull request #1748 from flexxyfluxx/patch-1
Readme: Clarify and fill in missing information for Nix(OS) install instructions
This commit is contained in:
commit
dbdbb5ef75
1 changed files with 29 additions and 1 deletions
30
README.md
30
README.md
|
@ -113,10 +113,38 @@ sudo urpmi nheko
|
||||||
#### Nix(os)
|
#### Nix(os)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# Imperatively: (not recommended)
|
||||||
nix-env -iA nixpkgs.nheko
|
nix-env -iA nixpkgs.nheko
|
||||||
# or
|
|
||||||
|
# In an ephemeral shell: (recommended if you just want to try it out without committing to a full installation)
|
||||||
nix-shell -p nheko --run nheko
|
nix-shell -p nheko --run nheko
|
||||||
|
# Note: The above command will both install and run Nheko.
|
||||||
|
# To stop it from running immediately, just remove the `--run nheko` from the end.
|
||||||
```
|
```
|
||||||
|
Alternatively, add it to your config in one of the following ways: (recommended for long-term installation)
|
||||||
|
|
||||||
|
**System-wide:**
|
||||||
|
```nix
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# ...
|
||||||
|
nheko
|
||||||
|
# ...
|
||||||
|
];
|
||||||
|
```
|
||||||
|
**User-specific:**
|
||||||
|
```nix
|
||||||
|
users.users.<user>.packages = with pkgs; [
|
||||||
|
# ...
|
||||||
|
nheko
|
||||||
|
# ...
|
||||||
|
];
|
||||||
|
```
|
||||||
|
**via `home-manager`:**
|
||||||
|
```nix
|
||||||
|
programs.nheko.enable = true;
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### Alpine Linux (and postmarketOS)
|
#### Alpine Linux (and postmarketOS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue