7 lines
136 B
Nix
7 lines
136 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "run-with-docker-group";
|
||
|
text = builtins.readFile ./run-with-docker-group.sh;
|
||
|
}
|