Dọn rác trong nixos - QuânSysAd's Blog

01 tháng 11 2025

Dọn rác trong nixos

 

Mục tiêuLệnh
Dọn gói không dùngsudo nix-collect-garbage
Dọn tất cả cũ + rollbacksudo nix-collect-garbage -d
Giữ lại 3 ngày gần nhấtsudo nix-collect-garbage --delete-older-than 3d
Dọn cache tải vềsudo rm -rf /nix/var/nix/downloads
Hợp nhất file trùngsudo nix-store --optimise
Xóa generation cũsudo nix-env --delete-generations old


Mẹo quản lý lâu dài

Thêm vào configuration.nix để tự dọn định kỳ:

{ nix.gc = { automatic = true; dates = "weekly"; options = "--delete-older-than 14d"; }; }

→ Nix sẽ tự chạy nix-collect-garbage mỗi tuần, giữ hệ thống gọn gàng.

Không có nhận xét nào: