diff options
| author | user@node5.net <user@node5.net> | 2026-06-23 00:39:08 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-06-23 00:39:08 +0200 |
| commit | f5ff82d7293b50ec412231e65b4480d6bf206fcc (patch) | |
| tree | 451840c54bfbb501a5621a8324658fa8ae1d020f /shell.nix | |
| parent | 7b8b244d074ca1639ae61332a086c78a22474857 (diff) | |
nixify repo, 2026 headline design, debug environment variables
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..04e4f10 --- /dev/null +++ b/shell.nix @@ -0,0 +1,22 @@ +{ 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 + ''; +} + + + |
