{ 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 ''; }