8 lines
170 B
Nix
Raw Normal View History

2024-01-19 12:20:21 +01:00
{ lib, config, pkgs, ... }: {
2024-01-19 11:58:52 +01:00
imports = [ ./vscodium ];
2023-12-16 15:18:35 +01:00
config = lib.mkIf (config.homecfg.make.develop) {
2024-01-19 12:20:21 +01:00
home.packages = with pkgs; [ blender godot_4 ];
2023-12-16 15:18:35 +01:00
};
}