nix-community.nixvim/tests/test-sources/plugins/by-name/godot/default.nix
2025-04-24 12:48:41 +02:00

24 lines
350 B
Nix

{
lib,
pkgs,
...
}:
let
# Godot is only available on Linux
enable = lib.meta.availableOn pkgs.stdenv.hostPlatform pkgs.godot_4;
in
lib.optionalAttrs enable {
empty = {
plugins.godot.enable = true;
};
defaults = {
plugins.godot = {
enable = true;
settings = {
executable = "godot";
};
};
};
}