update vsk article

This commit is contained in:
Ingolf Wagner 2024-06-14 21:12:43 +02:00
parent eda1899659
commit fc5fe164dc
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 6 additions and 3 deletions

View file

@ -1,7 +1,7 @@
version: '3'
vars:
SERVER: robi.private
SERVER: orbi.bear
SERVER_PATH: /srv/www/tech
tasks:

View file

@ -62,8 +62,11 @@ pkgs.mkShell {
(pkgs.writers.writeDashBin "axicli" ''
${steamrun}/bin/steam-run pipenv run axicli "$@"
'')
(pkgs.writers.writeDashBin "pipenv-shell" ''
${steamrun}/bin/steam-run pipenv shell
(pkgs.writers.writeDashBin "python" ''
${steamrun}/bin/steam-run ${pkgs.pipenv}/bin/pipenv run python "$@"
'')
(pkgs.writers.writeDashBin "pipenv" ''
${steamrun}/bin/steam-run ${pkgs.pipenv}/bin/pipenv "$@"
'')
];
}