1 2 3 4 5 6 7 8 9 10 11
use anyhow::Result; use crate::exec; use crate::output; pub fn run() -> Result<()> { output::status("garbage collecting..."); exec::nix_gc()?; output::status("done"); Ok(()) }