How to delete old NixOS boot configurations
24 March, 2017
NixOS is a Linux distribution with declarative configuration management. Your system configuration is specified in a set of files, and can run a command to update your system to the current specification. A consequence of this is that your entire system configuration can be versioned.
Every time you rebuild your NixOS configuration, a new entry is added to the bootloader. This is helpful if you ever make a configuration change that breaks on your machine because you can reboot into the last known working state and try something different.
If you don’t need to have access to all your old configurations, you can delete them:
sudo nix-collect-garbage -d
sudo nixos-rebuild switch
30 December 2018
I don’t know if I was confused when I first wrote this, or if the process has improved since then. Either way, these instructions are more complex than necessary, so I’ve updated them.
Delete the old (excludes the current) package configurations for the NixOS systemsudo nix-env -p /nix/var/nix/profiles/system --delete-generations old
Collect garbagenix-collect-garbage -d
View the remaining generationnix-env -p /nix/var/nix/profiles/system --list-generations
. Take note of this for the next step.Remove unnecessary boot loader entries. I usesystemd-boot
, so all my entries are located in/boot/loader/entries
. To remove all the old entries, runsudo bash -c "cd /boot/loader/entries; ls | grep -v <current-generation-name> | xargs rm"
(you might want to back up the entries somewhere to be safe)