1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

add more useful next steps to language tutorial (#936)

This commit is contained in:
Valentin Gagarin 2024-03-09 22:01:04 +01:00 committed by GitHub
parent 4b5bd33d89
commit 81317b403e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2037,7 +2037,14 @@ Explanation:
### Get things done
- [](declarative-reproducible-envs) create reproducible shell environments from a Nix file
- [Garbage Collection](https://nix.dev/manual/nix/2.18/package-management/garbage-collection.html) remove unused build results from the Nix store
- [](./packaging-existing-software.md) make more software available through Nix
If you want to take a longer break from learning Nix, you can remove unused build results from the Nix store with:
```console
$ nix-collect-garbage
```
### Learn more