This commit is contained in:
Leon Liu 2023-11-10 20:48:02 +09:00
parent f79db0b4bd
commit 713a2453e3
2 changed files with 16 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: { config, lib, modulesPath, ... }:
{ {
imports = imports =

View File

@ -47,6 +47,15 @@
google-chrome google-chrome
guake guake
dmidecode dmidecode
# Language servers
yaml-language-server
nodePackages.typescript-language-server
ansible-language-server
nodePackages.vscode-langservers-extracted
nodePackages.bash-language-server
lua-language-server
nil
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -136,5 +145,11 @@
true-color = true; true-color = true;
}; };
}; };
# languages = {
# language-server.rust-analyzer.config = {
# diagnostics.experimental.enable = true;
# };
# };
}; };
} }