This commit is contained in:
shibazaki 2025-03-20 18:41:42 +01:00
parent 9e30bf34c0
commit a4f700bde2

View File

@ -1,4 +1,8 @@
{ pkgs, ... }: {
{
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [
vscode
libreoffice
@ -16,6 +20,8 @@
ms-dotnettools.vscodeintellicode-csharp
csharpier.csharpier-vscode
];
userSettings = {
"godot.csharp.executablePath" = "${inputs.godot.packages.x86_64-linux.godotMono}/bin/godot-mono";
};
};
}