mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-07 18:02: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;
|
||
|
}
|