8 lines
200 B
Nix
8 lines
200 B
Nix
{ lib, config, pkgs, ... }: {
|
|
imports = [ ./vscodium ];
|
|
|
|
config = lib.mkIf (config.syscfg.make.develop) {
|
|
home.packages = with pkgs; [ blender godot_4 openscad-unstable bambu-studio ];
|
|
};
|
|
}
|