Did like several things, including xdg-terminal-exec, python, rust, gcc, and
IntelliJ Idea.
This commit is contained in:
parent
99381a4dd5
commit
5c66c98aba
|
|
@ -59,7 +59,8 @@ rec {
|
||||||
highway-gothic = callPackage ../../pkgs/highway-gothic/highway-gothic.nix { };
|
highway-gothic = callPackage ../../pkgs/highway-gothic/highway-gothic.nix { };
|
||||||
olympus = callPackage ../../pkgs/olympus/package.nix { };
|
olympus = callPackage ../../pkgs/olympus/package.nix { };
|
||||||
kakmerge = callPackage ../../pkgs/kakmerge/kakmerge.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
|
[ marksman nil ] ++ # Language servers except those installed through package sections
|
||||||
[ texliveFull texlab ] ++ # LaTeX
|
[ texliveFull texlab ] ++ # LaTeX
|
||||||
# (with ocamlPackages; [
|
# (with ocamlPackages; [
|
||||||
|
|
@ -76,7 +77,9 @@ rec {
|
||||||
# [ rustup ] ++ # Rust
|
# [ rustup ] ++ # Rust
|
||||||
# [ go gopls ] ++ # Golang
|
# [ go gopls ] ++ # Golang
|
||||||
# (with elmPackages; [ elm elm-language-server elm-format elm-test ]) ++
|
# (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
|
kak-lsp
|
||||||
brightnessctl
|
brightnessctl
|
||||||
|
|
@ -86,6 +89,7 @@ rec {
|
||||||
blueman
|
blueman
|
||||||
upower
|
upower
|
||||||
glib # provides trash and mount (latter may supplant udisks2?)
|
glib # provides trash and mount (latter may supplant udisks2?)
|
||||||
|
xdg-terminal-exec
|
||||||
] ++ # Basic utilities
|
] ++ # Basic utilities
|
||||||
[ bitwarden-cli htop snore hledger hledger-ui ]
|
[ bitwarden-cli htop snore hledger hledger-ui ]
|
||||||
++ # Personalized selection of command-line (CLI/TUI) apps
|
++ # Personalized selection of command-line (CLI/TUI) apps
|
||||||
|
|
@ -135,7 +139,7 @@ rec {
|
||||||
] ++ # Fonts
|
] ++ # Fonts
|
||||||
# [ papirus-icon-theme ] ++ # Icons
|
# [ papirus-icon-theme ] ++ # Icons
|
||||||
# [ vanilla-dmz ] ++ # Cursor
|
# [ vanilla-dmz ] ++ # Cursor
|
||||||
[ kakmerge ] ++ # Temp
|
[ kakmerge jetbrains.idea-community ] ++ # Temp
|
||||||
[ ];
|
[ ];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue