Compare commits

..

1 commit

Author SHA1 Message Date
ce798e798e
[chore] flake.lock: update inputs
Some checks failed
/ check (push) Failing after 30s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 3s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 31s
/ build (nvim) (push) Successful in 9s
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/6e6b3dd395c3b1eb9be9f2d096383a8d05add030' (2024-10-04)
  → 'github:NixOS/nixpkgs/1bfbbbe5bbf888d675397c66bfdb275d0b99361c' (2024-10-07)
• Updated input 'nixvim':
    'github:nix-community/nixvim/6594472fd275f6dcf5a9fba4a83d2f7fa2cf2b8a' (2024-10-05)
  → 'github:nix-community/nixvim/eda14029813906b1ef355823de237d86fea59908' (2024-10-08)
• Updated input 'unstable':
    'github:NixOS/nixpkgs/bc947f541ae55e999ffdb4013441347d83b00feb' (2024-10-04)
  → 'github:NixOS/nixpkgs/c31898adf5a8ed202ce5bea9f347b1c6871f32d1' (2024-10-06)
2024-10-09 03:05:03 +02:00

View file

@ -163,7 +163,12 @@ in
lint = {
enable = true;
lintersByFt = {
latex = [ "chktex" ];
rust = [ "typos" ];
latex = [
"chktex"
"typos"
];
markdown = [ "typos" ];
nix = [ "statix" ];
sh = [ "dash" ];
zsh = [ "zsh" ];
@ -172,16 +177,14 @@ in
lsp = {
enable = true;
servers = {
bashls = {
enable = true;
package = pkgs.unstable.bash-language-server;
};
bashls.enable = true;
bashls.package = pkgs.unstable.bash-language-server;
# clangd.enable = true; # Adds ~2GiB
# html.enable = true; # Not writing html
html.enable = true;
jsonls.enable = true;
marksman.enable = true;
nixd.enable = true;
nil_ls = {
nil-ls = {
enable = true;
settings.nix.flake = {
autoArchive = true;
@ -189,11 +192,12 @@ in
};
};
pyright.enable = true;
# ruff-lsp.enable = true;
ruff.enable = true;
taplo.enable = true;
# texlab.enable = true; # Not writing TeX rn
typos_lsp.enable = true;
# typst_lsp.enable = true; # Not using it either
typos-lsp.enable = true;
typst-lsp.enable = true;
};
};
lspkind = {