Last active
March 14, 2025 18:25
-
-
Save 5310/b20d7b16f193fa7093dcb0f8744fefa5 to your computer and use it in GitHub Desktop.
Script to update and clean-up after Home-manager, because it can't be bothered to #script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# update nix and home-manager | |
nix flake update --flake ~/.config/home-manager/ | |
home-manager switch | |
# cleanup nix | |
home-manager expire-generations -1days | |
nix-collect-garbage -d | |
nix store optimise | |
# refresh and fix application database | |
kbuildsycoca5 | |
chmod +x ~/.nix-profile/share/applications/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment