From ee9b522fac72f7dbcdb156323e812793a29b378c Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Tue, 12 Nov 2024 16:45:03 -0500 Subject: [PATCH] Did a bunch of refactoring home-manager packages including things I no longer use as well as commenting out programming languages so I can use nix flakes as dev environments. --- hosts/randolph/home.nix | 41 ++++++++++++++++++----------------------- 1 file changed, 18 insertions(+), 23 deletions(-) diff --git a/hosts/randolph/home.nix b/hosts/randolph/home.nix index 5f11657..ac7de7c 100644 --- a/hosts/randolph/home.nix +++ b/hosts/randolph/home.nix @@ -42,8 +42,6 @@ in { # Install packages home.packages = with pkgs; let - xdg-terminal-exec = - callPackage ../../pkgs/xdg-terminal-exec/xdg-terminal-exec.nix { }; mons = callPackage ../../pkgs/mons/mons.nix { }; archivo = callPackage ../../pkgs/archivo/archivo.nix { }; highway-gothic = callPackage ../../pkgs/highway-gothic/highway-gothic.nix { }; @@ -52,20 +50,20 @@ in { [ marksman nil ] ++ # Language servers except those installed through package sections [ texliveFull texlab ] ++ # LaTeX [ typst typstyle tinymist ] ++ # Typst - (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 ]) ++ + # (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 ] ++ # I guess..... [ kak-lsp @@ -73,18 +71,14 @@ in { grim slurp wl-clipboard - jq - xdg-terminal-exec blueman upower - proselint # for prose lint - glib + glib # provides trash and mount (latter may supplant udisks2?) ] ++ # Basic utilities [ bitwarden-cli htop snore hledger hledger-ui clifm ] ++ # Personalized selection of command-line (CLI/TUI) apps [ terminal ] ++ # Terminal emulator [ - qutebrowser evince imv vlc @@ -106,8 +100,9 @@ in { filezilla bitwarden josm + activate-linux ] ++ # Personalized selection of graphical apps - [ mons shticker-book-unwritten ] ++ # Games + [ olympus shticker-book-unwritten ] ++ # Games [ swaybg bemenu j4-dmenu-desktop ] ++ # Sway- and Wayland-related packages [ noto-fonts @@ -124,7 +119,7 @@ in { ] ++ # Fonts # [ papirus-icon-theme ] ++ # Icons # [ vanilla-dmz ] ++ # Cursor - [ activate-linux android-studio olympus ] ++ # Temp + [ ] ++ # Temp [ ]; programs.home-manager.enable = true;