From 5c66c98aba8dd38cb71c94139a8087a4ddbf5bf2 Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Mon, 9 Dec 2024 10:55:03 -0500 Subject: [PATCH] Did like several things, including xdg-terminal-exec, python, rust, gcc, and IntelliJ Idea. --- hosts/randolph/home.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts/randolph/home.nix b/hosts/randolph/home.nix index d1d22f9..1145f25 100644 --- a/hosts/randolph/home.nix +++ b/hosts/randolph/home.nix @@ -59,7 +59,8 @@ rec { highway-gothic = callPackage ../../pkgs/highway-gothic/highway-gothic.nix { }; olympus = callPackage ../../pkgs/olympus/package.nix { }; kakmerge = callPackage ../../pkgs/kakmerge/kakmerge.nix { }; - in [ gcc tree-sitter ] ++ # Basic dev tools + # xdg-terminal-exec = callPackage ../../pkgs/xdg-terminal-exec/xdg-terminal-exec.nix { }; + in [ gcc tree-sitter rustup ] ++ # Basic dev tools [ marksman nil ] ++ # Language servers except those installed through package sections [ texliveFull texlab ] ++ # LaTeX # (with ocamlPackages; [ @@ -76,7 +77,9 @@ rec { # [ rustup ] ++ # Rust # [ go gopls ] ++ # Golang # (with elmPackages; [ elm elm-language-server elm-format elm-test ]) ++ - [ python3 ] ++ # I guess..... + [ (python3.withPackages (ppkgs: with ppkgs;[ + pyyaml python-lsp-server + ])) ] ++ # I guess..... [ kak-lsp brightnessctl @@ -86,6 +89,7 @@ rec { blueman upower glib # provides trash and mount (latter may supplant udisks2?) + xdg-terminal-exec ] ++ # Basic utilities [ bitwarden-cli htop snore hledger hledger-ui ] ++ # Personalized selection of command-line (CLI/TUI) apps @@ -135,7 +139,7 @@ rec { ] ++ # Fonts # [ papirus-icon-theme ] ++ # Icons # [ vanilla-dmz ] ++ # Cursor - [ kakmerge ] ++ # Temp + [ kakmerge jetbrains.idea-community ] ++ # Temp [ ]; programs.home-manager.enable = true;