nixpkgs/home/packages/custom/update-nixos-system/default.nix
Daniel Siepmann 652dbf9e39
Remove nix store optimise
As this only frees up a little amount of memory.
2023-10-18 12:08:12 +02:00

17 lines
450 B
Nix

{ writeShellApplication }:
writeShellApplication {
name = "custom-update-operating-system";
text = ''
sudo nixos-rebuild switch --upgrade-all
# shellcheck disable=SC2010
oldVersion=$(ls -vr /nix/var/nix/profiles/ | grep system | head -n 2 | tail -n 1)
nvd diff "/nix/var/nix/profiles/$oldVersion" "/nix/var/nix/profiles/system"
sudo nix-env -p /nix/var/nix/profiles/system --delete-generations +3
nix store gc
'';
}