Skip to content

Commit

Permalink
feat: add nix-cleanup script and nixfied package
Browse files Browse the repository at this point in the history
  • Loading branch information
willyrgf committed Jun 10, 2024
1 parent d043fdb commit 4f72e10
Show file tree
Hide file tree
Showing 5 changed files with 246 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/nix-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Nix Checks

on:
push:
paths:
- 'flake.nix'
- 'flake.lock'
- 'nix-cleanup.sh'
- '.github/workflows/nix-checks.yml'

jobs:
nix_checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
permissions:
id-token: write
contents: read
pull-requests: read

steps:
- name: Checkout repository
uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 #v4

- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c #v26
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
sandbox = true # force sandbox for all OS (normally disabled for macOS)
- name: use magic nix cache
uses: DeterminateSystems/magic-nix-cache-action@b46e247b898aa56e6d2d2e728dc6df6c84fdb738 #v7

- name: Run app
run: nix run --print-build-logs --show-trace '.#nix-cleanup'

- name: Run app with --system
run: nix run --print-build-logs --show-trace '.#nix-cleanup' -- --system
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# nix-cleanup
# nix-cleanup
nix-cleanup is a script that cleans up the nix environment

## Run
`nix run 'github:willyrgf/nix-cleanup'`

60 changes: 60 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
description = "nix-cleanup is a script that cleans up the nix environment.";

inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";

outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages.nix-cleanup = pkgs.stdenv.mkDerivation rec {
pname = "nix-cleanup";
version = "0.0.1";
src = ./.;

buildInputs = [ pkgs.bash ];

installPhase = ''
mkdir -p $out/bin
substitute ${pname}.sh $out/bin/${pname} \
--replace "/usr/bin/env bash" "${pkgs.bash}/bin/bash"
chmod +x $out/bin/${pname}
'';

shellHook = ''
export PATH=${pkgs.bash}/bin:$PATH
'';
};

defaultPackage = self.packages.${system}.nix-cleanup;

defaultApp = {
type = "app";
program = "${self.packages.${system}.nix-cleanup}/bin/nix-cleanup";
};
});
}

102 changes: 102 additions & 0 deletions nix-cleanup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
#!/usr/bin/env bash

_exit_error(){
echo "ERROR: $@"
exit 1
}

_arg0(){
echo -n $0 | grep -Eo '([a-z]+[-.]?){1,}$'
}

_help(){
echo "Usage: $(_arg0) [--system] [flake-package-name] [nix-store-path]"
echo " --system: cleans up the whole nix-store (nix state)"
echo " flake-package-name: cleans up everything related to this package on the nix-store"
echo " nix-store-path: cleans up everything related to a nix-store path"
}

_delete_from_store_path(){
STORE_PATH=$1

# Get all referrers
REFERRERS=$(nix-store --query --referrers-closure "$STORE_PATH")

# Combine the store path and its referrers
ALL_PATHS="$STORE_PATH $REFERRERS"

echo "The following paths will be deleted (${#ALL_PATHS}):"
echo "$ALL_PATHS"

# Confirm before deletion
if [ ${CLEANUP_SYSTEM} -ne 1 ]; then
read -p "Are you sure you want to delete these paths? (y/N): " -r
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Aborting."
exit 1
fi
fi

# Delete the store path and its referrers
sudo nix-store --delete $ALL_PATHS

echo "Deleted the following paths:"
echo "$ALL_PATHS"
}

_nix_cleanup_system() {
echo "Indexing and deleting all nix-store paths..."
ls -1 -f -q /nix/store/ | grep -v '^\.' |
xargs -I {} -P 4 $0 /nix/store/{}

# Perform garbage collection to clean up everything
sudo nix-collect-garbage -d
}

_cleanup_package() {
PACKAGE_NAME=$1

# Get the store path of the package
STORE_PATH=$(nix path-info .#$PACKAGE_NAME 2>/dev/null)
if [ -z "$STORE_PATH" ]; then
echo "Package $PACKAGE_NAME not found."
exit 1
fi
echo "Found store path: $STORE_PATH"
_delete_from_store_path $STORE_PATH
# Perform garbage collection to clean up everything
sudo nix-collect-garbage -d
echo "Garbage collection complete. Nix store is cleaned up."
}
export CLEANUP_SYSTEM=0
# Ensure nix is available
if ! type nix > /dev/null 2>&1; then
_exit_error "Nix is required"
fi
# Ensure a package name is provided
if [ -z "$1" ]; then
_help
exit 1
fi
if [ "$1" == "--system" ]; then
CLEANUP_SYSTEM=1
_nix_cleanup_system
exit $?
fi
if [[ "$1" =~ "/nix/store" ]]; then
CLEANUP_SYSTEM=1
_delete_from_store_path $1
exit $?
fi
_cleanup_package $@

0 comments on commit 4f72e10

Please sign in to comment.