Rewrite updating section

This commit is contained in:
ItsDrike 2024-02-21 22:16:43 +01:00
parent 904fc0d65a
commit 4ac7557b4f
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -153,9 +153,20 @@ git commit -m "Initial commit"
## Updating ## Updating
Over time, to update the software that's installed on your machine, you can use Over time, you'll want to update the software that's installed on your machine,
`nix flake update`, to update your `flake.lock` file, and then `nixos-rebuild to do that, we'll first want to update the `flake.lock` file, which contains
switch`, to get switch your system to the new dependencies. the commit sha of the nixpkgs repo that's being used. To do so, you can use
this command (while in `~/dots` directory):
```sh
nix flake update
```
After which, you'll probably also want to rebuild your system and switch:
```sh
nixos-rebuild switch --flake .
```
> [!TIP] > [!TIP]
> This replaces the legacy (non-flake) regime's command: `nixos-rebuild switch --upgrade` > This replaces the legacy (non-flake) regime's command: `nixos-rebuild switch --upgrade`