2023-06-30 11:00:03 +02:00
# Updating the System
2023-06-23 14:29:12 +02:00
2023-07-03 12:16:12 +02:00
With Flakes, updating the system is simple. Just run the following commands in `/etc/nixos` (
or any other place where you keep the configuration.):
2023-06-23 14:29:12 +02:00
```shell
2023-06-28 11:41:46 +02:00
# Update flake.lock
2023-06-23 14:29:12 +02:00
nix flake update
2023-06-28 11:41:46 +02:00
# Apply the updates
2023-07-03 12:18:24 +02:00
sudo nixos-rebuild switch --flake .
2023-06-23 14:29:12 +02:00
```
2023-06-28 11:41:46 +02:00
Sometimes, you may encounter a sha256 mismatch error when running `nixos-rebuild switch` . This can be resolved by updating `flake.lock` through `nix flake update` .