15 lines
271 B
Nix
15 lines
271 B
Nix
{
|
|
personal.home_modules = [
|
|
(
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
geogebra6 # geogebra5 currently does not work?
|
|
chemtool
|
|
avogadro2
|
|
];
|
|
programs.sagemath.enable = true;
|
|
}
|
|
)
|
|
];
|
|
}
|