mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
38 lines
871 B
Nix
38 lines
871 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
userCfg = config.users.foo-dogsquared;
|
|
cfg = userCfg.programs.vs-code;
|
|
in
|
|
{
|
|
options.users.foo-dogsquared.programs.vs-code.enable =
|
|
lib.mkEnableOption "foo-dogsquared's Visual Studio Code setup";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
suites.editors.vscode.enable = true;
|
|
programs.vscode = {
|
|
extensions = with pkgs.vscode-extensions; [
|
|
# Additional language support.
|
|
bbenoist.nix
|
|
graphql.vscode-graphql
|
|
ms-vscode.cmake-tools
|
|
ms-vscode.cpptools
|
|
ms-vscode.powershell
|
|
|
|
# Extra editor niceties.
|
|
eamodio.gitlens
|
|
mkhl.direnv
|
|
usernamehw.errorlens
|
|
vadimcn.vscode-lldb
|
|
|
|
# The other niceties.
|
|
editorconfig.editorconfig
|
|
];
|
|
|
|
userSettings = {
|
|
"extensions.ignoreRecommendations" = true;
|
|
};
|
|
};
|
|
};
|
|
}
|