zaneyos/config/home/blender.nix
2024-02-08 13:14:37 -06:00

9 lines
168 B
Nix

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