summaryrefslogtreecommitdiffstats
path: root/update (unfollow)
Commit message (Collapse)Author
2023-05-02Fix(update): RemoveSoispha
It will (at some point) be installed through direnv, when it is in nixpkgs.
2023-04-29Feat(update): Use update flakeSoispha
This comes with better dependency handling and further visual upgrades.
2023-04-18Build: Add update scriptSoispha
This allows to group different update commands together and to raise awareness of the update task. The `grep '[^0-9]_[0-9] flake.lock'` is needed to check if multiple imports exists for the same input as nix will name them 'nixpkgs_1' 'nixpkgs_2' and so on. Having multiple inputs for the same thing just increases the needed storage space, if no other inputs are set to follow, but can break a flake's evaluation because of a partial update e.g., nixpkgs follows our version, but we leave rust-overlay unfollowed. This example would result in a newer cargo version (rust-overlay) getting combined with old packages (nixpkgs), which introduces the aforementioned partial update.