mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-07 15:42:03 +00:00
12 lines
201 B
Nix
12 lines
201 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "docker-cleanup";
|
|
runtimeInputs = [
|
|
pkgs.docker-client
|
|
pkgs.gawk
|
|
pkgs.gnugrep
|
|
];
|
|
text = builtins.readFile ./docker-cleanup.sh;
|
|
}
|