config.nix/modules/apps/development/godot.nix
2026-04-02 18:01:28 +02:00

20 lines
266 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options = {
apps.development = {
godot.enable = lib.mkEnableOption "enable godot";
};
};
config = lib.mkIf config.apps.development.godot.enable {
systemPackages = with pkgs; [
godot
];
};
}