nix-config/modules/nix/office/blender.nix
smayzy 904e582cc8
All checks were successful
nix flake show / show-flake (push) Successful in 38s
mv blender to module
2025-07-17 16:08:25 +02:00

18 lines
320 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.blender.enable = mkOption {
type = types.bool;
default = false;
description = "blender";
};
config = mkIf config.smayzy.blender.enable {
environment.systemPackages = with pkgs; [
blender
];
};
}