mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
9 lines
168 B
Nix
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
|
||
|
];
|
||
|
}
|