packaging stuff up

This commit is contained in:
Noah Masur
2025-01-30 14:48:17 -05:00
parent 0ebd0bac2c
commit b123ae3e69
19 changed files with 135 additions and 89 deletions

View File

@ -0,0 +1,11 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "docker-cleanup";
runtimeInputs = [
pkgs.docker-client
pkgs.gawk
pkgs.gnugrep
];
text = builtins.readFile ./docker-cleanup.sh;
}