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

14 lines
200 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
{
imports = [ ./obs ];
2024-10-16 00:20:47 -04:00
2024-10-09 03:36:08 -04:00
home.packages = with pkgs; [
krita
inkscape
audacity
blender_4_2
];
2024-10-15 02:40:43 -04:00
nixpkgs.overlays = [ blender-bin.overlays.default ];
2024-10-09 03:36:08 -04:00
}