mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-30 02:23:08 +01:00
9 lines
188 B
Nix
9 lines
188 B
Nix
{ pkgs, config, lib, host, ... }:
|
|
|
|
let inherit (import ../../hosts/${host}/options.nix) blender; in
|
|
lib.mkIf (blender == true) {
|
|
home.packages = with pkgs; [
|
|
pkgs.blender-hip
|
|
];
|
|
}
|