diff --git a/.github/workflows/build-and-cache.yml b/.github/workflows/build-and-cache.yml index 036e0b81..e65633a8 100644 --- a/.github/workflows/build-and-cache.yml +++ b/.github/workflows/build-and-cache.yml @@ -4,8 +4,10 @@ jobs: steps: - uses: thiagokokada/free-disk-space@main with: + opt: true swap-storage: false tool-cache: true + usrlocal: true - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v30 with: diff --git a/.github/workflows/update-flakes.yml b/.github/workflows/update-flakes.yml index 6c4961a4..eed46c48 100644 --- a/.github/workflows/update-flakes.yml +++ b/.github/workflows/update-flakes.yml @@ -4,8 +4,10 @@ jobs: steps: - uses: thiagokokada/free-disk-space@main with: + opt: true swap-storage: false tool-cache: true + usrlocal: true - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v30 with: diff --git a/actions/steps.nix b/actions/steps.nix index fa75a39a..79a0c907 100644 --- a/actions/steps.nix +++ b/actions/steps.nix @@ -9,6 +9,8 @@ with constants; "with" = { swap-storage = false; tool-cache = true; + opt = true; + usrlocal = true; }; }; checkoutStep = {