nixfleet/users/profiles/blender/default.nix
2022-06-10 11:07:26 +02:00

9 lines
141 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
openscad
] ++ (if !stdenv.hostPlatform.isAarch64 then [
blender
]
else [ ]);
}