zaneyos/config/home/blender.nix

9 lines
168 B
Nix
Raw Normal View History

{ pkgs, config, lib, ... }:
let inherit (import ../../options.nix) blender; in
lib.mkIf (blender == true) {
home.packages = with pkgs; [
pkgs.blender-hip
];
}