NixOS-Config/modules/home/programs/misc/production/default.nix

17 lines
217 B
Nix
Raw Normal View History

2024-10-15 02:40:43 -04:00
{ pkgs, blender-bin, ... }:
2024-10-09 03:36:08 -04:00
{
2024-10-16 00:20:47 -04:00
imports = [
./obs
];
2024-10-09 03:36:08 -04:00
home.packages = with pkgs; [
krita
inkscape
audacity
blender_4_2
sunvox
];
2024-10-15 02:40:43 -04:00
nixpkgs.overlays = [ blender-bin.overlays.default ];
2024-10-09 03:36:08 -04:00
}