nixos-and-flakes-book/docs/nixos-with-flakes/update-the-system.md

13 lines
467 B
Markdown
Raw Normal View History

2023-06-30 09:00:03 +00:00
# Updating the System
2023-06-23 12:29:12 +00:00
2023-07-04 04:18:46 +00:00
With Flakes, updating the system is straightforward. Simply execute the following commands in `/etc/nixos` or any other location where you keep the configuration:
2023-06-23 12:29:12 +00:00
```shell
2023-06-28 09:41:46 +00:00
# Update flake.lock
2023-06-23 12:29:12 +00:00
nix flake update
2023-07-04 04:18:46 +00:00
2023-06-28 09:41:46 +00:00
# Apply the updates
2023-07-03 10:18:24 +00:00
sudo nixos-rebuild switch --flake .
2023-06-23 12:29:12 +00:00
```
2023-07-04 04:18:46 +00:00
Occasionally, you may encounter a "sha256 mismatch" error when running `nixos-rebuild switch`. This error can be resolved by updating `flake.lock` using `nix flake update`.