FX upDATE

This commit is contained in:
foglar 2025-01-01 21:16:14 +01:00
parent 066f568a53
commit ea0a8e4c0e

View File

@ -175,7 +175,10 @@
install = pkgs.writeShellApplication {
name = "install";
runtimeInputs = with pkgs; [git busybox gum];
text = ''${./install.sh} "$@"'';
text = ''
chmod +x ${./install.sh}
${./install.sh} "$@"
'';
};
});