This commit is contained in:
@@ -30,6 +30,7 @@ in
|
||||
obsidian.enable = true;
|
||||
kdenlive.enable = true;
|
||||
thunderbird.enable = true;
|
||||
blender.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{ 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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -4,5 +4,6 @@
|
||||
./office.nix
|
||||
./obsidian.nix
|
||||
./kdenlive.nix
|
||||
./blender.nix
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user