17 lines
382 B
Nix
17 lines
382 B
Nix
{ config, lib, pkgs, blender, ... }:
|
|
{
|
|
nixpkgs.overlays = [ blender.overlays.default ];
|
|
|
|
home = lib.mkIf config.home.production.enable {
|
|
packages = with pkgs; [
|
|
audacity
|
|
blender_4_4
|
|
krita
|
|
];
|
|
persistence."/persist${config.home.homeDirectory}".directories = [
|
|
".config/audacity"
|
|
".config/blender"
|
|
".local/share/krita"
|
|
];
|
|
};
|
|
}
|