Update flake with commands
This commit is contained in:
26
flake.nix
26
flake.nix
@ -23,6 +23,7 @@
|
|||||||
flask
|
flask
|
||||||
flask-sqlalchemy
|
flask-sqlalchemy
|
||||||
sqlalchemy
|
sqlalchemy
|
||||||
|
requests
|
||||||
|
|
||||||
pytest
|
pytest
|
||||||
]);
|
]);
|
||||||
@ -41,11 +42,26 @@
|
|||||||
|
|
||||||
# Use $1 for positional args
|
# Use $1 for positional args
|
||||||
commands = [
|
commands = [
|
||||||
# {
|
{
|
||||||
# name = "";
|
name = "vscode";
|
||||||
# help = "";
|
help = "Launch VSCode";
|
||||||
# command = "";
|
command = "code . &>/dev/null &";
|
||||||
# }
|
}
|
||||||
|
{
|
||||||
|
name = "pycharm";
|
||||||
|
help = "Launch PyCharm Professional";
|
||||||
|
command = "pycharm-professional . &>/dev/null &";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "db";
|
||||||
|
help = "Launch SQLiteBrowser";
|
||||||
|
command = "sqlitebrowser ./instance/formula10.db &>/dev/null &";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "api";
|
||||||
|
help = "Launch Hoppscotch in Google Chrome";
|
||||||
|
command = "google-chrome-stable https://hoppscotch.io &>/dev/null &";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user