Update InstallOnLinux.md
This commit is contained in:
parent
983cdf6ad5
commit
525afdf050
@ -33,10 +33,27 @@ Run this command in your terminal to download and install Libation, replacing th
|
|||||||
This package is available on [Arch User Repository](https://aur.archlinux.org/packages/libation), install via your choice of [AUR helpers](https://wiki.archlinux.org/title/AUR_helpers).
|
This package is available on [Arch User Repository](https://aur.archlinux.org/packages/libation), install via your choice of [AUR helpers](https://wiki.archlinux.org/title/AUR_helpers).
|
||||||
Thanks to [mhdi](https://aur.archlinux.org/account/mhdi) who is taking care of AUR package maintenance.
|
Thanks to [mhdi](https://aur.archlinux.org/account/mhdi) who is taking care of AUR package maintenance.
|
||||||
- NixOS/package
|
- NixOS/package
|
||||||
|
- Install via `nix-shell`
|
||||||
```Console
|
```Console
|
||||||
nix-shell -p libation
|
nix-shell -p libation
|
||||||
```
|
```
|
||||||
A nix-shell will temporarily modify your $PATH environment variable. This can be used to try a piece of software before deciding to permanently install it.
|
A `nix-shell` will temporarily modify your $PATH environment variable. This can be used to try a piece of software before deciding to permanently install it.
|
||||||
|
- Install via NixOS configuration
|
||||||
|
```Console
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.libation
|
||||||
|
];
|
||||||
|
```
|
||||||
|
Add the following Nix code to your NixOS Configuration, usually located in `/etc/nixos/configuration.nix`
|
||||||
|
- On NixOS via via `nix-env`
|
||||||
|
```Console
|
||||||
|
nix-env -iA nixos.libation
|
||||||
|
```
|
||||||
|
- On Non NixOS via `nix-env`
|
||||||
|
```Console
|
||||||
|
nix-env -iA nixpkgs.libation
|
||||||
|
```
|
||||||
|
Warning: Using `nix-env` permanently modifies a local profile of installed packages. This must be updated and maintained by the user in the same way as with a traditional package manager.
|
||||||
Thanks to [TomaSajt](https://github.com/tomasajt) for taking care of Nix package maintenance.
|
Thanks to [TomaSajt](https://github.com/tomasajt) for taking care of Nix package maintenance.
|
||||||
|
|
||||||
If your desktop uses gtk, you should now see Libation among your applications.
|
If your desktop uses gtk, you should now see Libation among your applications.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user