plugins/godot: init

This commit is contained in:
Gaetan Lepage 2024-04-22 10:05:55 +02:00 committed by Gaétan Lepage
parent 84d7453e44
commit c826d146c6
3 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{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";
};
};
};
}