Skip to content

Commit

Permalink
refactor: Abandon all condas
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Aug 12, 2024
1 parent 9983c1a commit e5afa36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions hosts/meshify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
node.enable = true;
node.enableGlobally = true;
python.enable = true;
python.conda.enable = true;
R.enable = true;
rust.enable = true;
};
Expand Down
6 changes: 2 additions & 4 deletions modules/dev/python.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ in
(pkgs.python3.withPackages my-python-packages)
# FIXME my.multiqc
# my.nf-core
unstable.pixi
python3Packages.pip
python3Packages.black
python3Packages.isort
Expand Down Expand Up @@ -65,11 +64,10 @@ in
}

(mkIf cfg.conda.enable {
user.packages = with pkgs; [ unstable.micromamba ];
user.packages = with pkgs; [ unstable.pixi ];

env.MAMBA_ROOT_PREFIX = "$XDG_DATA_HOME/mamba";
env.PATH = [ "~/.pixi/bin/" ];

environment.shellAliases.mm = "micromamba";
environment.shellAliases.px = "pixi";

programs = {
Expand Down

0 comments on commit e5afa36

Please sign in to comment.