nix-community.nixvim/tests/test-sources/plugins/languages/godot.nix
2024-05-05 22:00:40 +02:00

18 lines
309 B
Nix

{ pkgs, ... }:
{
empty = {
# Godot is only available on Linux
plugins.godot.enable = pkgs.stdenv.isLinux;
};
defaults = {
plugins.godot = {
# Godot is only available on Linux
enable = pkgs.stdenv.isLinux;
settings = {
executable = "godot";
};
};
};
}