28 lines
573 B
Nix
28 lines
573 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
vscode
|
|
libreoffice
|
|
];
|
|
|
|
#programs.neovim.enable = true;
|
|
|
|
programs.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
ms-vscode.live-server
|
|
ms-dotnettools.csharp
|
|
ms-dotnettools.csdevkit
|
|
ms-dotnettools.vscode-dotnet-runtime
|
|
ms-dotnettools.vscodeintellicode-csharp
|
|
csharpier.csharpier-vscode
|
|
];
|
|
userSettings = {
|
|
"godot.csharp.executablePath" = "${inputs.godot.packages.x86_64-linux.godotMono}/bin/godot-mono";
|
|
};
|
|
};
|
|
}
|