nix-community.nixvim/tests/test-sources/plugins/by-name/godot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
309 B
Nix
Raw Normal View History

2024-04-22 10:05:55 +02:00
{ 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";
};
};
};
}