dotfiles/programs/zsh/scripts.nix
2024-07-06 04:32:48 +02:00

8 lines
173 B
Nix

{ pkgs, ... }: {
calc = "${pkgs.python313}/bin/python -i ${
pkgs.writeText "init.py" ''
from math import *;
# import numpy as np
''
} ";
}