nixfleet/users/profiles/blender/default.nix

8 lines
128 B
Nix

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