[m] Develop modules

This commit is contained in:
soraefir
2023-12-16 15:18:35 +01:00
parent da69a21100
commit 7fd3cf04b7
5 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,12 @@
{ lib, config, pkgs, ... }: {
imports = [ ./vscodium ];
config = lib.mkIf (config.homecfg.make.develop) {
home.packages = with pkgs; [
blender
godot_4
];
};
}