godot (not fixed)

This commit is contained in:
shibazaki 2025-03-30 11:15:37 +02:00
parent 9b4c6e7fe3
commit 9afb78cff6

View File

@ -1,15 +1,9 @@
{ {pkgs, ...}: {
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
vscode vscode
libreoffice libreoffice
]; ];
#programs.neovim.enable = true;
programs.vscode = { programs.vscode = {
enable = true; enable = true;
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
@ -21,8 +15,7 @@
csharpier.csharpier-vscode csharpier.csharpier-vscode
]; ];
userSettings = { userSettings = {
"godot.csharp.executablePath" = "${pkgs.godot_4-mono}/bin/godot_4-mono"; "godot.csharp.executablePath" = "${pkgs.godot_4-mono}/bin/godot4-mono";
"csharpier.dev.customPath" = "${pkgs.dotnet-sdk}/bin/dotnet-sdk";
}; };
}; };
} }