Reverting *some autoinstall script changes

This commit is contained in:
Emmet 2024-03-09 11:28:18 -06:00
parent 8c0e989ed0
commit 7f0daacd08
3 changed files with 6 additions and 6 deletions

View file

@ -149,7 +149,7 @@
install = pkgs.writeShellApplication {
name = "install";
runtimeInputs = with pkgs; [ git gnused ];
runtimeInputs = with pkgs; [ git ]; # I could make this fancier by adding other deps
text = ''${./install.sh} "$@"'';
};
});