diff options
| author | user@node5.net <user@node5.net> | 2025-08-21 20:06:36 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2025-08-21 20:06:36 +0200 |
| commit | da6778564d3afd3f8f56a52a03faf010b0672275 (patch) | |
| tree | e493874eaa71fff870f2fc7597982801edd8eab4 /shell.nix | |
| parent | a26d55b0611fb058d85d3eacf7fe62db1f424efb (diff) | |
Code highlight use more plesant cyan ish color scheme
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..fb80935 --- /dev/null +++ b/shell.nix @@ -0,0 +1,20 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.gnumake + pkgs.python312 # Specify the Python version (adjust if needed) + pkgs.python312Packages.flask + pkgs.python312Packages.pyyaml + pkgs.python312Packages.markdown + pkgs.python312Packages.python-telegram-bot + pkgs.python312Packages.pygments + pkgs.python312Packages.tabulate # Format lists as ascii tables for comments + pkgs.sqlite # Database for comments + ]; + + shellHook = '' + # Runs when starting shell + ''; +} + |
