Add Conda

master
David Crompton 2023-08-01 15:17:03 -04:00
parent 940f1a3546
commit ad563a085c
2 changed files with 6 additions and 0 deletions

View File

@ -4,5 +4,6 @@
./packages/terminal.nix
./packages/matlab.nix
./packages/containers.nix
./packages/conda.nix
];
}

View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
conda
];
}