From 257bfd61b67a8b0425d3fef0d5c9c1008a4191ef Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Fri, 27 Dec 2024 16:33:50 -0500 Subject: [PATCH] Removed all languages but python and latex from home manager config. --- hosts/randolph/home.nix | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/hosts/randolph/home.nix b/hosts/randolph/home.nix index d4ea526..af6c82a 100644 --- a/hosts/randolph/home.nix +++ b/hosts/randolph/home.nix @@ -61,27 +61,12 @@ rec { olympus = callPackage ../../pkgs/olympus/package.nix { }; kakmerge = callPackage ../../pkgs/kakmerge/kakmerge.nix { }; # xdg-terminal-exec = callPackage ../../pkgs/xdg-terminal-exec/xdg-terminal-exec.nix { }; - in [ gcc tree-sitter rustup ] ++ # Basic dev tools + in [ marksman nil ] ++ # Language servers except those installed through package sections [ texliveFull texlab ] ++ # LaTeX - # (with ocamlPackages; [ - # ocaml - # opam - # dune_3 - # dune-release - # merlin - # ocaml-lsp - # odoc - # ocamlformat - # utop - # ]) ++ # OCaml - # [ rustup ] ++ # Rust - # [ go gopls ] ++ # Golang - # (with elmPackages; [ elm elm-language-server elm-format elm-test ]) ++ [ (python3.withPackages (ppkgs: with ppkgs;[ pyyaml python-lsp-server ])) ] ++ # I guess..... - [ coursier metals jdk23 scala scala-cli scalafmt ammonite sbt ] ++ # Scala [ kak-lsp brightnessctl @@ -145,7 +130,7 @@ rec { ] ++ # Fonts # [ papirus-icon-theme ] ++ # Icons # [ vanilla-dmz ] ++ # Cursor - [ kakmerge jetbrains.idea-community ] ++ # Temp + [ kakmerge ] ++ # Temp [ ]; programs.home-manager.enable = true;