generated from Business-Wizard/data-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
45 lines (39 loc) · 874 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {allowUnfree=true;}; overlays = []; };
in
let
shell_packages = with pkgs; [
nushell
bat
eza
pre-commit
uv
cargo
rustup
vscode
docker
podman
];
in
pkgs.mkShell {
buildInputs = shell_packages;
shellHook = ''
if [ ! -d ".venv" ] && [ -f "pyproject.toml" ]; then
echo "Creating a virtual environment..."
uv sync
fi
if [ -d ".venv" ]; then
echo "Activating the virtual environment..."
source .venv/bin/activate
fi
nu -c '
let podman_vm_is_running = (podman machine info | from json | get machinestate) == "Running";
if not $podman_vm_is_running {
echo "Starting the podman VM..."
podman machine start
}
'
nu;
'';
}