diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-15 23:41:45 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-15 23:41:45 -0500 |
commit | 9301f6c7242b84ed2636b14fbc9b068087045f33 (patch) | |
tree | b3cf9d13c63503b7dd3b29abcc838da85a162ee1 /hosts | |
parent | ef3b728dd8225e16a3a43b042674361765b41876 (diff) | |
download | nixos-config-9301f6c7242b84ed2636b14fbc9b068087045f33.tar.gz nixos-config-9301f6c7242b84ed2636b14fbc9b068087045f33.zip |
hosts/ades/common: Install blender-bin 3.6
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/ades/common.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/ades/common.nix b/hosts/ades/common.nix index 020effb..04894f3 100644 --- a/hosts/ades/common.nix +++ b/hosts/ades/common.nix @@ -1,5 +1,9 @@ -{ lib, pkgs, ... }: +{ inputs, lib, pkgs, ... }: +let + blender-bin = inputs.blender-bin. + packages.x86_64-linux; +in { imports = [ ./hardware.nix @@ -44,6 +48,7 @@ adwaita-icon-theme arc-theme arc-icon-theme + blender-bin.blender_3_6 ]; programs.firefox = { |