10 lines
155 B
Nix
10 lines
155 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
openscad
|
|
] ++ (if !stdenv.hostPlatform.isAarch64 then [
|
|
blender
|
|
# freecad
|
|
]
|
|
else [ ]);
|
|
}
|