dotfiles/nixos/home/modules/editors.nix
shibazaki fcda92dfa8 bleh
2025-07-21 21:49:22 +02:00

23 lines
505 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
vscode
libreoffice
glow
];
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" = "${pkgs.godot_4-mono}/bin/godot4-mono";
};
};
}