17 lines
217 B
Nix
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 ];
|
|
}
|