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