13 lines
194 B
Nix
13 lines
194 B
Nix
|
{ lib, config, pkgs, ... }: {
|
||
|
|
||
|
imports = [ ./vscodium ];
|
||
|
|
||
|
config = lib.mkIf (config.homecfg.make.develop) {
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
blender
|
||
|
godot_4
|
||
|
];
|
||
|
};
|
||
|
}
|