mirror of
https://github.com/lsd-rs/lsd
synced 2024-11-10 06:14:19 +00:00
Added installation instructions for NixOS/nix
This commit is contained in:
parent
225b642b13
commit
5abedde5db
1 changed files with 17 additions and 0 deletions
17
README.md
17
README.md
|
@ -76,6 +76,23 @@ via [Homebrew](https://brew.sh/):
|
|||
brew install lsd
|
||||
```
|
||||
|
||||
### On NixOS/From nix
|
||||
|
||||
```sh
|
||||
nix-env -iA nixos.lsd
|
||||
```
|
||||
|
||||
Or add `lsd` to your `configuration.nix` like so:
|
||||
|
||||
```nix
|
||||
# ...
|
||||
environment.systemPackages = with pkgs; [
|
||||
# other packages ...
|
||||
lsd
|
||||
];
|
||||
# ...
|
||||
```
|
||||
|
||||
### From Sources
|
||||
|
||||
With Rust's package manager cargo, you can install lsd via:
|
||||
|
|
Loading…
Reference in a new issue