NixOS-Config/modules/home/programs/misc/production/default.nix
2024-10-16 00:20:47 -04:00

17 lines
217 B
Nix

{ pkgs, blender-bin, ... }:
{
imports = [
./obs
];
home.packages = with pkgs; [
krita
inkscape
audacity
blender_4_2
sunvox
];
nixpkgs.overlays = [ blender-bin.overlays.default ];
}