flake update

This commit is contained in:
John Lancaster
2025-03-20 18:47:07 -05:00
parent faa8df37fc
commit e522024eb9
3 changed files with 22 additions and 20 deletions

View File

@@ -110,15 +110,17 @@
packages = with pkgs; [
git
gdbm
# (python312.withPackages (python-pkgs: with python-pkgs; [ gdbm ]))
(python312.withPackages (python-pkgs: with python-pkgs; [
gdbm
notebook # kinda hacky, but needed so that jupyter notebook has some shared library it needs?
]))
(writeShellScriptBin "ad-nb" "cd $(readlink -f /etc/nixos) && devenv up")
# (writeShellScriptBin "ad-nb" "cd $(readlink -f /etc/nixos) && devenv up")
];
processes = {
my-jup.exec = "uv run jupyter notebook";
};
# processes = {
# my-jup.exec = "uv run jupyter notebook";
# };
enterShell = ''
alias appdaemon="${pkgs.uv}/bin/uv run --frozen python -m appdaemon"