nix-community.nixvim/tests/test-sources/plugins/languages/godot.nix

19 lines
309 B
Nix
Raw Normal View History

2024-05-05 19:39:35 +02:00
{ pkgs, ... }:
{
2024-04-22 10:05:55 +02:00
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";
};
};
};
}